We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a10300 commit 1b47afeCopy full SHA for 1b47afe
workflow/state.go
@@ -14,7 +14,7 @@ const (
14
StatusTerminated = api.RUNTIME_STATUS_TERMINATED
15
StatusPending = api.RUNTIME_STATUS_PENDING
16
StatusSuspended = api.RUNTIME_STATUS_SUSPENDED
17
- StatusPendingVersion = api.RUNTIME_STATUS_STALLED
+ StatusStalled = api.RUNTIME_STATUS_STALLED
18
)
19
20
type WorkflowMetadata protos.OrchestrationMetadata
@@ -40,7 +40,7 @@ func (w WorkflowMetadata) String() string {
40
case api.RUNTIME_STATUS_SUSPENDED:
41
return "SUSPENDED"
42
case api.RUNTIME_STATUS_STALLED:
43
- return "PENDING_VERSION"
+ return "STALLED"
44
default:
45
return ""
46
}
0 commit comments