We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff5d4b0 commit e5063a1Copy full SHA for e5063a1
internal/error.go
@@ -350,6 +350,11 @@ func (e *ContinueAsNewError) Error() string {
350
return "ContinueAsNew"
351
}
352
353
+// WorkflowIDReusePolicy return workflow id reuse policy in the new run
354
+func (e *ContinueAsNewError) WorkflowIDReusePolicy() WorkflowIDReusePolicy {
355
+ return e.params.workflowIDReusePolicy
356
+}
357
+
358
// WorkflowType return workflowType of the new run
359
func (e *ContinueAsNewError) WorkflowType() *WorkflowType {
360
return e.params.workflowType
0 commit comments