You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: julia_client/Torc/src/api/models/model_WorkflowModel.jl
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
use_pending_failed=false,
24
24
enable_ro_crate=false,
25
25
status_id=nothing,
26
+
slurm_config=nothing,
26
27
execution_config=nothing,
27
28
)
28
29
@@ -44,6 +45,7 @@
44
45
- use_pending_failed::Bool : Use PendingFailed status for failed jobs (enables AI-assisted recovery)
45
46
- enable_ro_crate::Bool : When true, automatically create RO-Crate entities for workflow files. Input files get entities during initialization; output files get entities on job completion.
46
47
- status_id::Int64
48
+
- slurm_config::String : Deprecated: Use execution_config instead. JSON-encoded blob of Slurm configuration options for the workflow. May include fields such as limit_resources, use_srun, srun_termination_signal, and enable_cpu_bind. Stored as a JSON string.
47
49
- execution_config::String : JSON-encoded execution configuration controlling mode (direct/slurm/auto) and related settings such as limit_resources, termination_signal, sigterm_lead_seconds, sigkill_headroom_seconds, timeout_exit_code, oom_exit_code, srun_termination_signal, and enable_cpu_bind. The server stores this without interpretation; only the client deserializes it.
Copy file name to clipboardExpand all lines: julia_client/julia_client/docs/WorkflowModel.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
**use_pending_failed** | **Bool** | Use PendingFailed status for failed jobs (enables AI-assisted recovery) | [optional][default to false]
23
23
**enable_ro_crate** | **Bool** | When true, automatically create RO-Crate entities for workflow files. Input files get entities during initialization; output files get entities on job completion. | [optional][default to false]
24
24
**status_id** | **Int64** | | [optional][default to nothing]
25
+
**slurm_config** | **String** | Deprecated: Use execution_config instead. JSON-encoded blob of Slurm configuration options for the workflow. May include fields such as limit_resources, use_srun, srun_termination_signal, and enable_cpu_bind. Stored as a JSON string. | [optional][default to nothing]
25
26
**execution_config** | **String** | JSON-encoded execution configuration controlling mode (direct/slurm/auto) and related settings such as limit_resources, termination_signal, sigterm_lead_seconds, sigkill_headroom_seconds, timeout_exit_code, oom_exit_code, srun_termination_signal, and enable_cpu_bind. The server stores this without interpretation; only the client deserializes it. | [optional][default to nothing]
Copy file name to clipboardExpand all lines: python_client/src/torc/openapi_client/models/workflow_model.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,9 @@ class WorkflowModel(BaseModel):
45
45
use_pending_failed: Optional[StrictBool] =Field(default=False, description="Use PendingFailed status for failed jobs (enables AI-assisted recovery)")
46
46
enable_ro_crate: Optional[StrictBool] =Field(default=False, description="When true, automatically create RO-Crate entities for workflow files. Input files get entities during initialization; output files get entities on job completion.")
47
47
status_id: Optional[StrictInt] =None
48
+
slurm_config: Optional[StrictStr] =Field(default=None, description="Deprecated: Use execution_config instead. JSON-encoded blob of Slurm configuration options for the workflow. May include fields such as limit_resources, use_srun, srun_termination_signal, and enable_cpu_bind. Stored as a JSON string.")
48
49
execution_config: Optional[StrictStr] =Field(default=None, description="JSON-encoded execution configuration controlling mode (direct/slurm/auto) and related settings such as limit_resources, termination_signal, sigterm_lead_seconds, sigkill_headroom_seconds, timeout_exit_code, oom_exit_code, srun_termination_signal, and enable_cpu_bind. The server stores this without interpretation; only the client deserializes it.")
0 commit comments