Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Jun 3, 2024
1 parent 54ec222 commit 1458329
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func (r *ReconcileVitessBackupsSchedule) Reconcile(ctx context.Context, req ctrl
tooLate = missedRun.Add(time.Duration(*vbsc.Spec.StartingDeadlineSeconds) * time.Second).Before(time.Now())
}
if tooLate {
log.Info("missed starting deadline for latest run; skipping; next run is scheduled for: %v", nextRun.Format(time.RFC3339))
log.Infof("missed starting deadline for latest run; skipping; next run is scheduled for: %s", nextRun.Format(time.RFC3339))
return scheduledResult, nil
}

Expand Down

0 comments on commit 1458329

Please sign in to comment.