Skip to content

Commit 56652c6

Browse files
committed
drop gc reconciliation period
1 parent 5296141 commit 56652c6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/controllers/nodeclass/garbagecollection/controller.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ func (c *Controller) Reconcile(ctx context.Context) (reconciler.Result, error) {
137137
if err := c.cleanupInactiveProfiles(ctx); err != nil {
138138
return reconciler.Result{}, err
139139
}
140-
// Requeue after 30 minutes
141-
return reconciler.Result{RequeueAfter: 30 * time.Minute}, nil
140+
return reconciler.Result{RequeueAfter: 5 * time.Minute}, nil
142141
}
143142

144143
func (c *Controller) Register(_ context.Context, m manager.Manager) error {

0 commit comments

Comments
 (0)