From 20cacc84badca3d11e572e221b759797f6ade51b Mon Sep 17 00:00:00 2001 From: Nathan Fritz Date: Thu, 1 Sep 2011 15:51:43 -0700 Subject: remove ping schedule on disconnect --- sleekxmpp/plugins/xep_0199/ping.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sleekxmpp/plugins/xep_0199') diff --git a/sleekxmpp/plugins/xep_0199/ping.py b/sleekxmpp/plugins/xep_0199/ping.py index 1baf6f4d..de7f5688 100644 --- a/sleekxmpp/plugins/xep_0199/ping.py +++ b/sleekxmpp/plugins/xep_0199/ping.py @@ -70,6 +70,8 @@ class xep_0199(base_plugin): self.xmpp.add_event_handler('session_start', self._handle_keepalive, threaded=True) + self.xmpp.add_event_handler('session_end', + self._handle_session_end) def post_init(self): """Handle cross-plugin dependencies.""" @@ -106,6 +108,9 @@ class xep_0199(base_plugin): scheduled_ping, repeat=True) + def _handle_session_end(self, event): + self.xmpp.scheduler.remove('Ping Keep Alive') + def _handle_ping(self, iq): """ Automatically reply to ping requests. -- cgit v1.2.3