Apparently container can be gone already.

This commit is contained in:
Nicolas Patry 2024-10-09 18:11:53 +02:00
parent 338aadd067
commit 2db8f6004a
No known key found for this signature in database
GPG Key ID: 64AF4752B2967863

View File

@ -572,7 +572,10 @@ def launcher(event_loop):
print(container_output, file=sys.stderr) print(container_output, file=sys.stderr)
finally: finally:
try:
container.remove() container.remove()
except Exception:
pass
if DOCKER_IMAGE is not None: if DOCKER_IMAGE is not None:
return docker_launcher return docker_launcher