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 7b4752a commit d39424aCopy full SHA for d39424a
services/director-v2/src/simcore_service_director_v2/core/settings.py
@@ -82,6 +82,11 @@ class ComputationalBackendSettings(BaseCustomSettings):
82
FileLinkType.PRESIGNED,
83
description=f"Default file link type to use with computational backend on-demand clusters '{list(FileLinkType)}'",
84
)
85
+ COMPUTATIONAL_BACKEND_MAX_WAITING_FOR_CLUSTER_TIMEOUT: datetime.timedelta = Field(
86
+ default=datetime.timedelta(minutes=30),
87
+ description="maximum time a pipeline can wait for a cluster to start"
88
+ "(default to seconds, or see https://pydantic-docs.helpmanual.io/usage/types/#datetime-types for string formating).",
89
+ )
90
91
@cached_property
92
def default_cluster(self) -> BaseCluster:
0 commit comments