Fix unhandled 'Connection was refused' error in gtkui

This commit is contained in:
Calum Lind 2011-06-17 17:57:01 +01:00
parent c95ca18b37
commit d2e1d66f43
1 changed files with 2 additions and 2 deletions

View File

@ -343,7 +343,7 @@ Please see the details below for more information."), details=traceback.format_e
def on_connect(connector): def on_connect(connector):
component.start() component.start()
def on_connect_fail(result, try_counter): def on_connect_fail(result, try_counter):
log.error("Connection to host failed..") log.info("Connection to host failed..")
# We failed connecting to the daemon, but lets try again # We failed connecting to the daemon, but lets try again
if try_counter: if try_counter:
log.info("Retrying connection.. Retries left: %s", try_counter) log.info("Retrying connection.. Retries left: %s", try_counter)
@ -351,7 +351,7 @@ Please see the details below for more information."), details=traceback.format_e
import time import time
time.sleep(0.5) time.sleep(0.5)
do_connect(try_counter) do_connect(try_counter)
return result return
def do_connect(try_counter): def do_connect(try_counter):
client.connect(*host[1:]).addCallback(on_connect).addErrback(on_connect_fail, try_counter) client.connect(*host[1:]).addCallback(on_connect).addErrback(on_connect_fail, try_counter)