Skip to content

Commit

Permalink
so I set a 1 minute time limit on the execution, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Feb 16, 2024
1 parent c96ae45 commit 4370285
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions flow/workflows/cdc_flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,9 @@ func CDCFlowWorkflowWithConfig(
}

sessionOptions := &workflow.SessionOptions{
CreationTimeout: time.Minute,
ExecutionTimeout: time.Minute,
CreationTimeout: 5 * time.Minute,
ExecutionTimeout: 144 * time.Hour,
HeartbeatTimeout: time.Minute,
}
syncSessionCtx, err := workflow.CreateSession(ctx, sessionOptions)
if err != nil {
Expand Down

0 comments on commit 4370285

Please sign in to comment.