Merge branch 'master' into 'master'
reconnect: fix callback when not currently connected See merge request poezio/slixmpp!32
This commit is contained in:
commit
e9a87a0b77
1 changed files with 3 additions and 1 deletions
|
@ -494,6 +494,8 @@ class XMLStream(asyncio.BaseProtocol):
|
||||||
self.send_raw(self.stream_footer)
|
self.send_raw(self.stream_footer)
|
||||||
self.schedule('Disconnect wait', wait,
|
self.schedule('Disconnect wait', wait,
|
||||||
self.abort, repeat=False)
|
self.abort, repeat=False)
|
||||||
|
else:
|
||||||
|
self.event("disconnected", reason)
|
||||||
|
|
||||||
def abort(self):
|
def abort(self):
|
||||||
"""
|
"""
|
||||||
|
@ -512,8 +514,8 @@ class XMLStream(asyncio.BaseProtocol):
|
||||||
when the server acknowledgement is received), call connect()
|
when the server acknowledgement is received), call connect()
|
||||||
"""
|
"""
|
||||||
log.debug("reconnecting...")
|
log.debug("reconnecting...")
|
||||||
self.disconnect(wait, reason)
|
|
||||||
self.add_event_handler('disconnected', lambda event: self.connect(), disposable=True)
|
self.add_event_handler('disconnected', lambda event: self.connect(), disposable=True)
|
||||||
|
self.disconnect(wait, reason)
|
||||||
|
|
||||||
def configure_socket(self):
|
def configure_socket(self):
|
||||||
"""Set timeout and other options for self.socket.
|
"""Set timeout and other options for self.socket.
|
||||||
|
|
Loading…
Reference in a new issue