We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3adfaa9 commit 703e407Copy full SHA for 703e407
graphql_ws/base_async.py
@@ -55,7 +55,7 @@ async def resolve(
55
items = None
56
if items is not None:
57
children = [
58
- asyncio.create_task(resolve(child, _container=data, _key=key))
+ asyncio.ensure_future(resolve(child, _container=data, _key=key))
59
for key, child in items
60
]
61
if children:
0 commit comments