From c39ad7dfbb862d22994329963df8c4729c083305 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Wed, 13 Jun 2012 09:13:33 -0700 Subject: Prevent duplicate certificate expiration timers. --- sleekxmpp/xmlstream/xmlstream.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sleekxmpp/xmlstream/xmlstream.py') diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 6dfd5498..c0d02e9b 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -317,7 +317,7 @@ class XMLStream(object): self.dns_service = None self.add_event_handler('connected', self._handle_connected) - self.add_event_handler('disconnected', self._end_keepalive) + self.add_event_handler('disconnected', self._remove_schedules) self.add_event_handler('session_start', self._start_keepalive) self.add_event_handler('session_start', self._cert_expiration) @@ -878,9 +878,10 @@ class XMLStream(object): kwargs = {'now': True}, repeat=True) - def _end_keepalive(self, event): - """Stop sending whitespace keepalives""" + def _remove_schedules(self, event): + """Remove whitespace keepalive and certificate expiration schedules.""" self.scheduler.remove('Whitespace Keepalive') + self.scheduler.remove('Certificate Expiration') def start_stream_handler(self, xml): """Perform any initialization actions, such as handshakes, -- cgit v1.2.3