diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-23 17:17:41 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-23 17:17:41 +0200 |
commit | e5af0597a6255d2fa3d820429154733920569090 (patch) | |
tree | 5b3c81bb1b4a8d76c5e4e674c7c605626f9a711c | |
parent | 74117453b5c3c2be51206a2b34a3ea2e1818f9d4 (diff) | |
download | slixmpp-e5af0597a6255d2fa3d820429154733920569090.tar.gz slixmpp-e5af0597a6255d2fa3d820429154733920569090.tar.bz2 slixmpp-e5af0597a6255d2fa3d820429154733920569090.tar.xz slixmpp-e5af0597a6255d2fa3d820429154733920569090.zip |
Forgot to remove that
-rw-r--r-- | slixmpp/xmlstream/xmlstream.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py index 3df98862..bbed8166 100644 --- a/slixmpp/xmlstream/xmlstream.py +++ b/slixmpp/xmlstream/xmlstream.py @@ -447,7 +447,6 @@ class XMLStream(object): def _remove_schedules(self, event): """Remove some schedules that become pointless when disconnected""" self.cancel_schedule('Whitespace Keepalive') - self.cancel_schedule('Certificate Expiration') self.cancel_schedule('Disconnect wait') def start_stream_handler(self, xml): @@ -684,7 +683,6 @@ class XMLStream(object): try: cb() except Exception as e: - log.exception('Error processing scheduled task') self.exception(e) def _execute_and_reschedule(self, name, cb, seconds): |