Skip to content
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
96251c3
clean unused stuff
sanderegg Sep 5, 2025
69cdc5a
refactor
sanderegg Sep 5, 2025
e8e6c98
ongoing
sanderegg Sep 5, 2025
c11771c
minor
sanderegg Sep 5, 2025
59480b9
trying to improve situation
sanderegg Sep 5, 2025
e102e11
creating a test for this situation
sanderegg Sep 5, 2025
99a5222
ongoing
sanderegg Sep 5, 2025
cec0f54
Update services/director-v2/src/simcore_service_director_v2/modules/c…
sanderegg Sep 8, 2025
947ffc8
Update services/director-v2/src/simcore_service_director_v2/modules/c…
sanderegg Sep 8, 2025
7a52079
Update services/director-v2/tests/unit/with_dbs/comp_scheduler/test_s…
sanderegg Sep 8, 2025
1bec8cf
name
sanderegg Sep 8, 2025
249e81f
refactor
sanderegg Sep 8, 2025
1b94752
test improved
sanderegg Sep 8, 2025
45a3cb5
make it work
sanderegg Sep 8, 2025
f62b281
use strings
sanderegg Sep 8, 2025
870e899
fixed usage of random
sanderegg Sep 8, 2025
46aeacf
make it faster
sanderegg Sep 8, 2025
c5c61fd
minor
sanderegg Sep 8, 2025
06c6777
minor
sanderegg Sep 8, 2025
2c69167
refactor
sanderegg Sep 8, 2025
047731c
added new constant
sanderegg Sep 8, 2025
b7c6093
completed testing and added timeout
sanderegg Sep 8, 2025
e9d1439
linter
sanderegg Sep 8, 2025
29bff14
unused
sanderegg Sep 8, 2025
c6fc84c
Update services/director-v2/src/simcore_service_director_v2/core/sett…
sanderegg Sep 8, 2025
1f203f7
Update services/director-v2/tests/unit/with_dbs/comp_scheduler/test_s…
sanderegg Sep 8, 2025
24f2337
Update services/director-v2/src/simcore_service_director_v2/modules/c…
sanderegg Sep 8, 2025
5b61258
typo
sanderegg Sep 8, 2025
0821c4e
@pcrespov review: simplify
sanderegg Sep 8, 2025
19a833b
missing constant
sanderegg Sep 9, 2025
7be7a44
sqlalchemy 2.0
sanderegg Sep 9, 2025
03108ff
sql 2.0
sanderegg Sep 9, 2025
3c7555d
fixed issue
sanderegg Sep 9, 2025
9ee9d87
removed deprecation
sanderegg Sep 9, 2025
bd552cf
removed deprecation
sanderegg Sep 9, 2025
fc6f56a
update doc
sanderegg Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def transition(
):
_logger.info("Task '%s' transition from %s to %s", key, start, finish)
assert self._worker # nosec
assert isinstance(self._worker, Worker) # nosec
self._worker.log_event(
TASK_LIFE_CYCLE_EVENT.format(key=key),
TaskLifeCycleState.from_worker_task_state(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ class ComputationalBackendSettings(BaseCustomSettings):
),
] = datetime.timedelta(minutes=10)

COMPUTATIONAL_BACKEND_MAX_WAITING_FOR_RETRIEVING_RESULTS: Annotated[
datetime.timedelta,
Field(
description="maximum time the computational scheduler waits until retrieving results from the computational backend is failed"
"(default to seconds, or see https://pydantic-docs.helpmanual.io/usage/types/#datetime-types for string formatting)."
),
] = datetime.timedelta(minutes=10)

@cached_property
def default_cluster(self) -> BaseCluster:
return BaseCluster(
Expand Down
Loading
Loading