Skip to content

Commit

Permalink
Re-enable the most common quiet period (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimdickinson authored Sep 30, 2020
1 parent f73041c commit 67217d8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions operator/pkg/reconciliation/reconcile_racks.go
Original file line number Diff line number Diff line change
Expand Up @@ -2190,6 +2190,13 @@ func (rc *ReconciliationContext) ReconcileAllRacks() (reconcile.Result, error) {
}
}

if err := rc.enableQuietPeriod(5); err != nil {
logger.Error(
err,
"Error when enabling quiet period")
return result.Error(err).Output()
}

rc.ReqLogger.Info("All StatefulSets should now be reconciled.")

return result.Done().Output()
Expand Down

0 comments on commit 67217d8

Please sign in to comment.