Skip to content
Closed
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
3 changes: 3 additions & 0 deletions gpustack_runtime/deployer/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ def _create_pause_container(
**create_options,
)
except docker.errors.APIError as e:
logger.exception("_create_pause_container error")
msg = f"Failed to create container {container_name}"
raise OperationError(msg) from e
else:
Expand Down Expand Up @@ -532,6 +533,7 @@ def _create_unhealthy_restart_container(
**create_options,
)
except docker.errors.APIError as e:
logger.exception("_create_unhealthy_restart_container error")
msg = f"Failed to create container {container_name}"
raise OperationError(msg) from e
else:
Expand Down Expand Up @@ -875,6 +877,7 @@ def _create_containers(
**create_options,
)
except docker.errors.APIError as e:
logger.exception("_create_containers error")
msg = f"Failed to create container {container_name}"
raise OperationError(msg) from e
else:
Expand Down
Loading