Skip to content

Commit

Permalink
Increase Docker client timeout when pushing images (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgray authored Jul 8, 2024
1 parent a4f9419 commit b1431d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipeline/console/container/push.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def push_container(namespace: Namespace):
else pipeline_config.pipeline_name
)

docker_client: docker.DockerClient = docker.from_env(timeout=300)
docker_client: docker.DockerClient = docker.from_env(timeout=600)

registry_info = http.get(endpoint="/v4/registry")
registry_info = registry_schemas.RegistryInformation.parse_raw(registry_info.text)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pipeline-ai"
version = "2.3.1"
version = "2.3.2"
description = "Pipelines for machine learning workloads."
authors = [
"Paul Hetherington <ph@mystic.ai>",
Expand Down

0 comments on commit b1431d1

Please sign in to comment.