We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bd470a commit c47d4c5Copy full SHA for c47d4c5
internal/collection/workflow.go
@@ -19,8 +19,8 @@ const (
19
20
// Maximum duration of the processing workflow. Cadence does not support
21
// workflows with infinite duration for now, but high values are fine.
22
- // We consider a week more than enough.
23
- ProcessingWorkflowStartToCloseTimeout = time.Hour * 24 * 7
+ // Ten years is the timeout we also use in activities (policies.go).
+ ProcessingWorkflowStartToCloseTimeout = time.Hour * 24 * 365 * 10
24
)
25
26
type ProcessingWorkflowRequest struct {
0 commit comments