Coroutine was never awaited(科鲁廷从未被期待过)
本文介绍了科鲁廷从未被期待过的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的是一个简单的上下文管理器,里面有一个异步循环:
class Runner:
def __init__(self):
self.loop = asyncio.get_event_loop()
def __enter__(self):
return self
def __exit__(self, *args):
self.loop.close()
def do_work(self):
...
return self.loop.run_until_complete(asyncio.gather(*futures))
当我使用两个Runner对象时,我收到"Coroutine从未等待过"错误。
with Runner() as r:
r.do_work()
with Runner() as r2:
r2.do_work()
因为在第一个Runner(R)中关闭了一个循环。如果我不在exit中关闭循环,则一切正常,但我不需要使其保持打开状态。我知道一个线程中只能有一个循环,但是为什么它不等到RUN_TORK_COMPLETE?
推荐答案
为什么不等待RUN_TORK_COMPLETE
可能会发生这样的情况:
import asyncio
async def test():
await asyncio.sleep(0.1)
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(test())
loop.close()
loop.run_until_complete(test())
结果:
RuntimeError: Event loop is closed
sys:1: RuntimeWarning: coroutine 'test' was never awaited
如何解决此问题?
因为您以这种方式使用事件循环,所以每次都只能使用newevent loop:
class Runner:
def __init__(self):
self.loop = asyncio.new_event_loop() # *new*_event_loop
def do_work(self):
# Make sure all futures are created
# with relevant event loop been set as current
asyncio.set_event_loop(self.loop)
# ...
return self.loop.run_until_complete(asyncio.gather(*futures))
这篇关于科鲁廷从未被期待过的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:科鲁廷从未被期待过
基础教程推荐
猜你喜欢
- 症状类型错误:无法确定关系的真值 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01