From 979396bb1e2b9f076459e9e086b1656296fd7ae2 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 11 Feb 2018 19:25:38 +0100 Subject: asyncio.async has been scheduled for removal for a long time now move to asyncio.ensure_future --- slixmpp/plugins/xep_0065/proxy.py | 2 +- slixmpp/plugins/xep_0163.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'slixmpp/plugins') diff --git a/slixmpp/plugins/xep_0065/proxy.py b/slixmpp/plugins/xep_0065/proxy.py index cda33dca..a4be2717 100644 --- a/slixmpp/plugins/xep_0065/proxy.py +++ b/slixmpp/plugins/xep_0065/proxy.py @@ -215,7 +215,7 @@ class XEP_0065(BasePlugin): self.xmpp.event('socks5_stream', conn) self.xmpp.event('stream:%s:%s' % (sid, requester), conn) - asyncio.async(gather(proxy_futures, iq, streamhosts)) + asyncio.ensure_future(gather(proxy_futures, iq, streamhosts)) def activate(self, proxy, sid, target, ifrom=None, timeout=None, callback=None): """Activate the socks5 session that has been negotiated.""" diff --git a/slixmpp/plugins/xep_0163.py b/slixmpp/plugins/xep_0163.py index 5832b4ee..047ca5d3 100644 --- a/slixmpp/plugins/xep_0163.py +++ b/slixmpp/plugins/xep_0163.py @@ -62,7 +62,7 @@ class XEP_0163(BasePlugin): for ns in namespace: self.xmpp['xep_0030'].add_feature('%s+notify' % ns, jid=jid) - asyncio.async(self.xmpp['xep_0115'].update_caps(jid)) + asyncio.ensure_future(self.xmpp['xep_0115'].update_caps(jid)) def remove_interest(self, namespace, jid=None): """ @@ -81,7 +81,7 @@ class XEP_0163(BasePlugin): for ns in namespace: self.xmpp['xep_0030'].del_feature(jid=jid, feature='%s+notify' % namespace) - asyncio.async(self.xmpp['xep_0115'].update_caps(jid)) + asyncio.ensure_future(self.xmpp['xep_0115'].update_caps(jid)) def publish(self, stanza, node=None, id=None, options=None, ifrom=None, timeout_callback=None, callback=None, timeout=None): -- cgit v1.2.3