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: apps/docs/openapi-v2-workflows.json
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9986,7 +9986,7 @@
9986
9986
},
9987
9987
"durablyRecorded": {
9988
9988
"type": "boolean",
9989
-
"description": "Whether this request durably recorded a cancellation. Always false for a run that was already terminal, where the request is satisfied but nothing was written."
9989
+
"description": "Whether this request durably recorded a cancellation. False when an already-cancelled run needed no further durable write."
9990
9990
},
9991
9991
"locallyAborted": {
9992
9992
"type": "boolean",
@@ -9997,7 +9997,7 @@
9997
9997
"description": "Whether a paused execution was cancelled."
9998
9998
},
9999
9999
"reason": {
10000
-
"description": "Machine-readable cancellation outcome, present on every cancellation including full successes. `recorded` is the success value. `already_cancelled`, `already_completed`, and `already_failed` mean the run had already reached that terminal state, so nothing was cancelled and `durablyRecorded` is false. `redis_unavailable` and `redis_write_failed` mean the distributed cancellation signal was not written, so an already-running execution may not observe the cancellation. `paused_event_publish_failed` and `paused_database_cancel_failed` name the failing step for a paused run.",
10000
+
"description": "Machine-readable cancellation outcome. `recorded`, `queue_cancelled`, and `already_cancelled` are successful outcomes; the remaining values identify a degraded or incomplete cancellationstep.",
10001
10001
"type": "string",
10002
10002
"enum": [
10003
10003
"recorded",
@@ -10007,7 +10007,10 @@
10007
10007
"redis_unavailable",
10008
10008
"redis_write_failed",
10009
10009
"paused_event_publish_failed",
10010
-
"paused_database_cancel_failed"
10010
+
"paused_database_cancel_failed",
10011
+
"queue_cancelled",
10012
+
"active_resume_signal_failed",
10013
+
"cancellation_not_finalized"
10011
10014
]
10012
10015
}
10013
10016
},
@@ -10021,7 +10024,7 @@
10021
10024
],
10022
10025
"additionalProperties": false,
10023
10026
"title": "Cancel workflow run result",
10024
-
"description": "Outcome of a workflow run cancellation request. Cancellation is best-effort: a run already in a terminal state succeeds with no effect, reported as `durablyRecorded: false` with an `already_*` reason naming the state observed."
10027
+
"description": "Outcome of the shared workflow-run cancellation lifecycle used by internal UI, Copilot, and v2 callers."
0 commit comments