RUN_NOT_RUNNING
- HTTP status
- 409
- Recommended action
- START_A_RUN
- Details payload
{ runId: string, currentState: "draft" | "ended", attemptedOp: string, recommendedAction: RecommendedAction }
Remediation
Start the draft Run first, or create a new Run when details.currentState is ended
Cause
An operation that only a live Run supports (End, for example) was called on a Run that is still a draft or already ended.
Fix
Check details.currentState. A draft Run needs Start first; an ended Run is terminal, so create a new Run instead of reopening it.
splitch