diff options
Diffstat (limited to 'kafka/cluster.py')
-rw-r--r-- | kafka/cluster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/cluster.py b/kafka/cluster.py index 55765dc..15921dc 100644 --- a/kafka/cluster.py +++ b/kafka/cluster.py @@ -73,7 +73,7 @@ class Cluster(object): def _bootstrap(self, hosts, timeout=2): for host, port in hosts: - conn = BrokerConnection(host, port, timeout) + conn = BrokerConnection(host, port) if not conn.connect(): continue self._brokers['bootstrap'] = conn |