We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7ba09 commit 830c4f1Copy full SHA for 830c4f1
services/dask-sidecar/src/simcore_service_dask_sidecar/computational_sidecar/docker_utils.py
@@ -434,6 +434,9 @@ async def managed_monitor_container_log_task( # noqa: PLR0913 # pylint: disable
434
await monitoring_task
435
436
437
+_AIODOCKER_PULLING_TIMEOUT_S: Final[int] = 60 * _MINUTE
438
+
439
440
async def pull_image(
441
docker_client: Docker,
442
docker_auth: DockerBasicAuth,
@@ -448,6 +451,7 @@ async def pull_image(
448
451
"username": docker_auth.username,
449
452
"password": docker_auth.password.get_secret_value(),
450
453
},
454
+ timeout=_AIODOCKER_PULLING_TIMEOUT_S,
455
):
456
await log_publishing_cb(
457
f"Pulling {service_key}:{service_version}: {pull_progress}...",
0 commit comments