We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1019d9b commit 14576d9Copy full SHA for 14576d9
1 file changed
receptor/receptor.py
@@ -8,7 +8,6 @@
8
9
from .router import MeshRouter
10
from .work import WorkManager
11
-from .connection import Connection
12
from .messages import envelope, directive
13
from . import exceptions
14
@@ -120,8 +119,7 @@ def remove_connection(self, protocol_obj):
120
119
self.router.debug_router()
121
self.update_connection_manifest(connection_node)
122
notify_connections += self.connections[connection_node]
123
- for active_connection in notify_connections:
124
- active_connection.send_route_advertisement(self.router.get_edges())
+ self.send_route_advertisement(self.router.get_edges())
125
126
async def shutdown_handler(self):
127
while True:
0 commit comments