Skip to content

Commit 239fb66

Browse files
committed
@GitHK TimeoutError -> asyncio.TimeoutError
1 parent f69a4b8 commit 239fb66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/api-server/src/simcore_service_api_server/core/health_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async def _background_task_method(self):
9494
self._dummy_queue.get(), timeout=self._timeout_seconds
9595
)
9696
self._health_check_failure_count = 0
97-
except TimeoutError:
97+
except asyncio.TimeoutError:
9898
self._increment_health_check_failure_count()
9999

100100

0 commit comments

Comments
 (0)