Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
m00g3n committed Jul 9, 2024
1 parent 9386064 commit de5eb82
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/controller/runtime/fsm/runtime_fsm_initialise.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package fsm

import (
"context"
"time"

imv1 "github.com/kyma-project/infrastructure-manager/api/v1"
"k8s.io/apimachinery/pkg/api/meta"
Expand Down Expand Up @@ -60,7 +59,7 @@ func sFnInitialize(ctx context.Context, m *fsm, s *systemState) (stateFn, *ctrl.
// instance is being deleted and shoot is being deleted
if !instanceIsNotBeingDeleted && instanceHasFinalizer {
m.log.Info("Waiting on instance resources being deleted")
return requeueAfter(15 * time.Second)
return requeueAfter(gardenerRequeueDuration)
}

m.log.Info("noting to reconcile, stopping sfm")
Expand Down

0 comments on commit de5eb82

Please sign in to comment.