Fix undefined sleep.
This commit is contained in:
parent
df9fd2af09
commit
a3658e352b
|
@ -135,7 +135,7 @@ class ConnectionManager(component.Component):
|
||||||
os.popen("deluged -p %s" % port)
|
os.popen("deluged -p %s" % port)
|
||||||
# We need to wait for the host to start before connecting
|
# We need to wait for the host to start before connecting
|
||||||
while not self.test_online_status(uri):
|
while not self.test_online_status(uri):
|
||||||
sleep(10)
|
time.sleep(0.01)
|
||||||
client.set_core_uri(uri)
|
client.set_core_uri(uri)
|
||||||
self.hide()
|
self.hide()
|
||||||
|
|
||||||
|
@ -432,7 +432,7 @@ class ConnectionManager(component.Component):
|
||||||
self.start_localhost(port)
|
self.start_localhost(port)
|
||||||
# We need to wait for the host to start before connecting
|
# We need to wait for the host to start before connecting
|
||||||
while not self.test_online_status(uri):
|
while not self.test_online_status(uri):
|
||||||
sleep(10)
|
time.sleep(0.01)
|
||||||
client.set_core_uri(uri)
|
client.set_core_uri(uri)
|
||||||
self._update()
|
self._update()
|
||||||
self.hide()
|
self.hide()
|
||||||
|
|
Loading…
Reference in New Issue