/home/runner/work/ansible-sdk/ansible-sdk/ansible_sdk/model/job_status.py:64: DeprecationWarning: The explicit passing of coroutine objects to asyncio.wait() is deprecated since Python 3.8, and scheduled for removal in Python 3.11.
await asyncio.wait([self._newevent.wait(), self._done.wait()], return_when=asyncio.FIRST_COMPLETED)
Solution seems to be to manually wrap the coroutines in tasks.
Currently seeing this warning when using the SDK:
Solution seems to be to manually wrap the coroutines in tasks.