Undo the additional Iq result checks until further testing is done.

Revert "Check for Iq results based on both the sender's JID and the ID value."

This reverts commit 9ffde5ab37.
This commit is contained in:
Lance Stout
2012-04-08 16:30:52 -04:00
parent d3e8993e22
commit eed6da538a

View File

@@ -9,7 +9,7 @@
from sleekxmpp.stanza.rootstanza import RootStanza
from sleekxmpp.xmlstream import StanzaBase, ET
from sleekxmpp.xmlstream.handler import Waiter, Callback
from sleekxmpp.xmlstream.matcher import StanzaPath
from sleekxmpp.xmlstream.matcher import MatcherId
from sleekxmpp.exceptions import IqTimeout, IqError
@@ -187,17 +187,14 @@ class Iq(RootStanza):
if callback is not None and self['type'] in ('get', 'set'):
handler_name = 'IqCallback_%s' % self['id']
handler = Callback(handler_name,
StanzaPath('iq@id=%s@from=%s' % (
self['id'], self['to'])),
MatcherId(self['id']),
callback,
once=True)
self.stream.register_handler(handler)
StanzaBase.send(self, now=now)
return handler_name
elif block and self['type'] in ('get', 'set'):
waitfor = Waiter('IqWait_%s' % self['id'],
StanzaPath('iq@id=%s@from=%s' % (
self['id'], self['to'])))
waitfor = Waiter('IqWait_%s' % self['id'], MatcherId(self['id']))
self.stream.register_handler(waitfor)
StanzaBase.send(self, now=now)
result = waitfor.wait(timeout)