mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-13 16:46:09 +00:00
ci: add python package build test
* We now test a package build on every PRs. * Add precommit rule to validate the presence of __init__.py in directoies that contain python files Closes: https://github.com/meta-llama/llama-stack/issues/2406 Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
6039d922c0
commit
ba7e95e035
13 changed files with 144 additions and 1 deletions
|
@ -289,7 +289,7 @@ class VectorIORouter(VectorIO):
|
|||
continue
|
||||
health = await asyncio.wait_for(impl.health(), timeout=timeout)
|
||||
health_statuses[provider_id] = health
|
||||
except (asyncio.TimeoutError, TimeoutError):
|
||||
except TimeoutError:
|
||||
health_statuses[provider_id] = HealthResponse(
|
||||
status=HealthStatus.ERROR,
|
||||
message=f"Health check timed out after {timeout} seconds",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue