-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
asyncutils.py:60: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
result = await asyncio.wait_for(
In asyncio, the explicit passing of a loop argument has been deprecated and will be removed in version 3.10 for the following: asyncio.sleep(), asyncio.gather(), asyncio.shield(), asyncio.wait_for(), asyncio.wait(), asyncio.as_completed(), asyncio.Task, asyncio.Lock, asyncio.Event, asyncio.Condition, asyncio.Semaphore, asyncio.BoundedSemaphore, asyncio.Queue, asyncio.create_subprocess_exec(), and asyncio.create_subprocess_shell().
https://docs.python.org/3/whatsnew/3.8.html
Solution is simply to remove the loop from:
result = await asyncio.wait_for(
self._worker_co(*args, **kwargs),
self._max_task_time,
)
Metadata
Metadata
Assignees
Labels
No labels