@@ -387,9 +387,7 @@ class PopenTrackerServerState(object):
387387
388388 current = None
389389
390- def __init__ (
391- self , host , port = 9190 , port_end = 9199 , silent = False , reuse_addr = False , timeout = None
392- ):
390+ def __init__ (self , host , port = 9190 , port_end = 9199 , silent = False , reuse_addr = True , timeout = None ):
393391 if silent :
394392 logger .setLevel (logging .WARN )
395393
@@ -419,7 +417,7 @@ def __init__(
419417
420418
421419def _popen_start_tracker_server (
422- host , port = 9190 , port_end = 9199 , silent = False , reuse_addr = False , timeout = None
420+ host , port = 9190 , port_end = 9199 , silent = False , reuse_addr = True , timeout = None
423421):
424422 # This is a function that will be sent to the
425423 # Popen worker to run on a separate process.
@@ -458,7 +456,7 @@ class Tracker(object):
458456 """
459457
460458 def __init__ (
461- self , host = "0.0.0.0" , port = 9190 , port_end = 9199 , silent = False , reuse_addr = False , timeout = None
459+ self , host = "0.0.0.0" , port = 9190 , port_end = 9199 , silent = False , reuse_addr = True , timeout = None
462460 ):
463461 if silent :
464462 logger .setLevel (logging .WARN )
0 commit comments