You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The async methods async_run and async_resume in Runner call __get_executing_run and read_from_file_when_ready, which uses poll on CommandManager.processhere . Since asyncio.Process created here doesn’t implement poll (see docs), unlike subprocess.Popen from here used in the sync methods, this results in an AttributeError.
The text was updated successfully, but these errors were encountered:
The async methods
async_run
andasync_resume
inRunner
call__get_executing_run
andread_from_file_when_ready
, which usespoll
onCommandManager.process
here . Sinceasyncio.Process
created here doesn’t implementpoll
(see docs), unlikesubprocess.Popen
from here used in the sync methods, this results in anAttributeError
.The text was updated successfully, but these errors were encountered: