From 10ee0deb4bfc8d4ebb39d02f3d72693f1142eeef Mon Sep 17 00:00:00 2001 From: TheKysek Date: Tue, 5 Jul 2016 09:12:20 +0200 Subject: [PATCH] Fix for sending multiple connections to the same host --- src/manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/manager.py b/src/manager.py index fc7457e..2c195b9 100644 --- a/src/manager.py +++ b/src/manager.py @@ -87,6 +87,7 @@ class Manager(threading.Thread): continue c = Connection(addr[0], addr[1]) c.start() + hosts.add(c.host) with shared.connections_lock: shared.connections.add(c)