Skip to content

Commit

Permalink
Correct FullNodeDiscovery.pending_tasks typo without s (#16669)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Oct 23, 2023
1 parent 1a05888 commit c158330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/server/node_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ async def _connect_to_peers(self, random: Random) -> None:
await asyncio.sleep(connect_peer_interval)

# prune completed connect tasks
self.pending_task = set(filter(lambda t: not t.done(), self.pending_tasks))
self.pending_tasks = set(filter(lambda t: not t.done(), self.pending_tasks))

except Exception as e:
self.log.error(f"Exception in create outbound connections: {e}")
Expand Down

0 comments on commit c158330

Please sign in to comment.