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 4a3a5a0 commit 3cbb87eCopy full SHA for 3cbb87e
services/clusters-keeper/src/simcore_service_clusters_keeper/core/settings.py
@@ -290,7 +290,7 @@ class ApplicationSettings(BaseCustomSettings, MixinLoggingSettings):
290
"(default to seconds, or see https://pydantic-docs.helpmanual.io/usage/types/#datetime-types for string formating)",
291
)
292
293
- SERVICE_TRACKING_HEARTBEAT: datetime.timedelta = Field(
+ SERVICE_TRACKING_HEARTBEAT: Annotated[datetime.timedelta, BeforeValidator(int)] = Field(
294
default=datetime.timedelta(seconds=60),
295
description="Service heartbeat interval (everytime a heartbeat is sent into RabbitMQ) "
296
0 commit comments