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 bfba34b commit db3720fCopy full SHA for db3720f
silverback/cluster/types.py
@@ -307,8 +307,10 @@ class ServiceHealth(BaseModel):
307
308
309
class ClusterHealth(BaseModel):
310
- ars: ServiceHealth = Field(exclude=True) # TODO: Replace w/ cluster
311
- ccs: ServiceHealth = Field(exclude=True) # TODO: Replace w/ cluster
+ # TODO: Replace w/ cluster
+ ccs: ServiceHealth
312
+ # NOTE: network => healthy
313
+ ars: dict[str, ServiceHealth] = {}
314
bots: dict[str, ServiceHealth] = {}
315
316
@field_validator("bots", mode="before") # TODO: Fix so this is default
0 commit comments