Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/controller/flinkapplication/flink_state_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ func (s *FlinkStateMachine) handleDualRunning(ctx context.Context, application *
// wait until all vertices have been scheduled and started more than 5 minutes
allVerticesStarted := true
for _, v := range job.Vertices {
allVerticesStarted = allVerticesStarted && (v.Duration > 300000)
allVerticesStarted = allVerticesStarted && (v.Duration > 900000)
logger.Infof(ctx, "Duration of job %s is %v where job.state is %s", v.Name, v.Duration, string(job.State))
}

Expand Down