mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-13 04:54:23 +00:00
Catch all exceptions in do_multicall()
This commit is contained in:
parent
cfc742501d
commit
7322a08323
@ -95,7 +95,8 @@ class CoreProxy(gobject.GObject):
|
||||
callback(ret)
|
||||
except:
|
||||
pass
|
||||
except (socket.error, xmlrpclib.ProtocolError, deluge.xmlrpclib.Fault), e:
|
||||
except (socket.error, xmlrpclib.ProtocolError,
|
||||
deluge.xmlrpclib.Fault, Exception), e:
|
||||
log.warning("Could not contact daemon: %s", e)
|
||||
self.set_core_uri(None)
|
||||
finally:
|
||||
|
Loading…
x
Reference in New Issue
Block a user