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 @@ -1198,7 +1198,7 @@ func (s *FlinkStateMachine) handleDualRunning(ctx context.Context, application *
durationOfJob := time.Now().Unix()*1000 - job.StartTime
logger.Infof(ctx, "Updating job is still starting where duration is %v", durationOfJob)

if durationOfJob > 600000 {
if durationOfJob > 1800000 {
_, _, err := s.flinkController.GetVersionAndJobIDForHash(ctx, application, updatingHash)
if err != nil {
logger.Warnf(ctx, "Cannot find flink application with hash %s. The hash may be obsolete; Ignoring hash", updatingHash)
Expand Down