Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ def start(
return container
except ImageNotFound as exc:
logger.error("Image not found %s", container_image)
raise ImageNotFound from exc
raise exc
except NotFound as exc:
logger.error("Docker error: %s", exc.explanation)
raise NotFound from exc
raise exc
except Exception as exc:
self.status = SandboxStatus.ERROR
logger.error("Error starting container: %s", exc)
Expand Down