Commit 84327881 authored by Mikhail Sennikov's avatar Mikhail Sennikov
Browse files

Fix warmup

parent 71aa70c0
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -20,7 +20,7 @@ class NodeSwarm:
async def _load_from_db(self):
node_repo = NodeRepository(await db.get_db())
self._connections = {(int(node.id), NodeConnection(node))
self._connections = {int(node.id): NodeConnection(node)
for node in await node_repo.list_all()}
async def _try_connect_all(self):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment