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 959d1b6 commit bd7e1c7Copy full SHA for bd7e1c7
packages/service-library/src/servicelib/docker_utils.py
@@ -361,7 +361,7 @@ async def wait_till_docker_api_proxy_is_responsive(app: FastAPI) -> None:
361
362
363
async def is_docker_api_proxy_ready(
364
- app: FastAPI, *, timeout=_DEFAULT_DOCKER_API_PROXY_HEALTH_TIMEOUT
+ app: FastAPI, *, timeout=_DEFAULT_DOCKER_API_PROXY_HEALTH_TIMEOUT # noqa: ASYNC109
365
) -> bool:
366
try:
367
await asyncio.wait_for(get_remote_docker_client(app).version(), timeout=timeout)
0 commit comments