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
End after the five seconds timeout without an exception.
Actual behavior
After ending, this error happens:
Exception ignored in: <bound method BaseSubprocessTransport.__del__ of <_UnixSubprocessTransport closed pid=3649 returncode=-15 stdin=<_UnixWritePipeTransport closing fd=7 open> stdout=<_UnixReadPipeTrans
port fd=8 open> stderr=<_UnixReadPipeTransport fd=10 open>>>
Traceback (most recent call last):
File "/usr/lib/python3.6/asyncio/base_subprocess.py", line 132, in __del__
self.close()
File "/usr/lib/python3.6/asyncio/base_subprocess.py", line 106, in close
proto.pipe.close()
File "/usr/lib/python3.6/asyncio/unix_events.py", line 624, in close
self.write_eof()
File "/usr/lib/python3.6/asyncio/unix_events.py", line 610, in write_eof
self._loop.call_soon(self._call_connection_lost, None)
File "/usr/lib/python3.6/asyncio/base_events.py", line 580, in call_soon
self._check_closed()
File "/usr/lib/python3.6/asyncio/base_events.py", line 366, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
Additional information
This is strange, because all is working fine and an exception is being raised when closing from asyncio lib. I couldn't find a simpler repro. I had a similar problem when working with #178. I only could repro this error when using shell=True option in ExecuteProcess.
The text was updated successfully, but these errors were encountered:
Bug report
Required Info:
Steps to reproduce issue
Example launch file with the issue:
I ran it doing python3 SCRIPT_NAME
Expected behavior
End after the five seconds timeout without an exception.
Actual behavior
After ending, this error happens:
Additional information
This is strange, because all is working fine and an exception is being raised when closing from asyncio lib. I couldn't find a simpler repro. I had a similar problem when working with #178. I only could repro this error when using shell=True option in ExecuteProcess.
The text was updated successfully, but these errors were encountered: