From 9390794401f438e93ac39805b77bcca05d5a3e47 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 27 Jan 2021 00:09:26 +0100 Subject: examples: updates to reflect asyncio --- examples/IoT_TestDevice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/IoT_TestDevice.py') diff --git a/examples/IoT_TestDevice.py b/examples/IoT_TestDevice.py index b9546017..d8e8fd06 100755 --- a/examples/IoT_TestDevice.py +++ b/examples/IoT_TestDevice.py @@ -168,13 +168,13 @@ if __name__ == '__main__': xmpp.beClientOrServer(server=True) while not(xmpp.testForRelease()): xmpp.connect() - xmpp.process(block=True) + xmpp.process(forever=False) logging.debug("lost connection") if args.sensorjid: logging.debug("will try to call another device for data") xmpp.beClientOrServer(server=False,clientJID=args.sensorjid) xmpp.connect() - xmpp.process(block=True) + xmpp.process(forever=False) logging.debug("ready ending") else: -- cgit v1.2.3