diff options
author | Lance Stout <lancestout@gmail.com> | 2012-05-06 20:19:02 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-05-06 20:19:02 -0700 |
commit | 24234bf7182066d6c2ee827c8121b8daede56663 (patch) | |
tree | 36fb7dcb69c1914e1144e1575080748c57ab40be /examples/register_account.py | |
parent | ec99339140364ade00451689fe308c655f68165a (diff) | |
download | slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.gz slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.bz2 slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.tar.xz slixmpp-24234bf7182066d6c2ee827c8121b8daede56663.zip |
Update other examples to use threaded mode for handlers that call disconnect()
Diffstat (limited to 'examples/register_account.py')
-rw-r--r-- | examples/register_account.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/register_account.py b/examples/register_account.py index 17f075ab..20377b26 100644 --- a/examples/register_account.py +++ b/examples/register_account.py @@ -47,7 +47,7 @@ class RegisterBot(sleekxmpp.ClientXMPP): # and the XML streams are ready for use. We want to # listen for this event so that we we can initialize # our roster. - self.add_event_handler("session_start", self.start) + self.add_event_handler("session_start", self.start, threaded=True) # The register event provides an Iq result stanza with # a registration form from the server. This may include @@ -56,7 +56,7 @@ class RegisterBot(sleekxmpp.ClientXMPP): # cases, you will need to examine the fields provided # and respond accordingly. SleekXMPP provides plugins # for data forms and OOB links that will make that easier. - self.add_event_handler("register", self.register) + self.add_event_handler("register", self.register, threaded=True) def start(self, event): """ |