summaryrefslogtreecommitdiff
path: root/slixmpp/features
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-11 00:43:21 +0100
committerEmmanuel Gil Peyrot <emmanuel.peyrot@collabora.com>2015-06-20 01:12:03 +0100
commitc29fc39ef1d5b7e74f22d12cdcf6f68cfcaa21d4 (patch)
treebce4ba7c4be161e2bfb72242fd2ecf58d5b26dcf /slixmpp/features
parent8335c087823938c956c8141ad9280990e515c3ae (diff)
downloadslixmpp-c29fc39ef1d5b7e74f22d12cdcf6f68cfcaa21d4.tar.gz
slixmpp-c29fc39ef1d5b7e74f22d12cdcf6f68cfcaa21d4.tar.bz2
slixmpp-c29fc39ef1d5b7e74f22d12cdcf6f68cfcaa21d4.tar.xz
slixmpp-c29fc39ef1d5b7e74f22d12cdcf6f68cfcaa21d4.zip
Remove JID cache, to better test for performance.
Diffstat (limited to 'slixmpp/features')
-rw-r--r--slixmpp/features/feature_bind/bind.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/features/feature_bind/bind.py b/slixmpp/features/feature_bind/bind.py
index 25c99948..c031ab72 100644
--- a/slixmpp/features/feature_bind/bind.py
+++ b/slixmpp/features/feature_bind/bind.py
@@ -52,7 +52,7 @@ class FeatureBind(BasePlugin):
iq.send(callback=self._on_bind_response)
def _on_bind_response(self, response):
- self.xmpp.boundjid = JID(response['bind']['jid'], cache_lock=True)
+ self.xmpp.boundjid = JID(response['bind']['jid'])
self.xmpp.bound = True
self.xmpp.event('session_bind', self.xmpp.boundjid)
self.xmpp.session_bind_event.set()