File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ package handler
17
17
import (
18
18
"context"
19
19
20
- "github.com/operator-framework/operator-lib/handler/internal/metrics"
21
-
22
20
. "github.com/onsi/ginkgo/v2"
23
21
. "github.com/onsi/gomega"
24
22
"github.com/prometheus/client_golang/prometheus"
@@ -30,6 +28,8 @@ import (
30
28
"sigs.k8s.io/controller-runtime/pkg/controller/controllertest"
31
29
"sigs.k8s.io/controller-runtime/pkg/event"
32
30
"sigs.k8s.io/controller-runtime/pkg/reconcile"
31
+
32
+ "github.com/operator-framework/operator-lib/handler/internal/metrics"
33
33
)
34
34
35
35
var _ = Describe ("InstrumentedEnqueueRequestForObject" , func () {
Original file line number Diff line number Diff line change 15
15
package handler
16
16
17
17
import (
18
- "github.com/operator-framework/operator-lib/internal/annotation"
19
-
20
18
"sigs.k8s.io/controller-runtime/pkg/handler"
19
+
20
+ "github.com/operator-framework/operator-lib/internal/annotation"
21
21
)
22
22
23
23
// NewPause returns an event handler that filters out objects with a truthy "paused" annotation.
Original file line number Diff line number Diff line change 15
15
package predicate
16
16
17
17
import (
18
- "github.com/operator-framework/operator-lib/internal/annotation"
19
-
20
18
"sigs.k8s.io/controller-runtime/pkg/predicate"
19
+
20
+ "github.com/operator-framework/operator-lib/internal/annotation"
21
21
)
22
22
23
23
// NewPause returns a predicate that filters out objects with a truthy "paused" annotation.
You can’t perform that action at this time.
0 commit comments