Skip to content

Commit 035e0dc

Browse files
committed
Fix operator-lifecycle-manager sync drift
Signed-off-by: perdasilva <[email protected]>
1 parent 8649636 commit 035e0dc

File tree

2 files changed

+4
-3
lines changed
  • staging/operator-lifecycle-manager

2 files changed

+4
-3
lines changed

staging/operator-lifecycle-manager/cmd/olm/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func main() {
173173

174174
// Emit CSV metric
175175
if err = op.EnsureCSVMetric(); err != nil {
176-
logger.WithError(err).Fatalf("error emitting metrics for existing CSV")
176+
logger.WithError(err).Fatal("error emitting metrics for existing CSV")
177177
}
178178

179179
if *writeStatusName != "" {

staging/operator-lifecycle-manager/pkg/controller/registry/grpc/source.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ import (
88
"sync"
99
"time"
1010

11+
"github.com/operator-framework/operator-registry/pkg/client"
12+
1113
"github.com/sirupsen/logrus"
1214
"golang.org/x/net/http/httpproxy"
1315
"golang.org/x/net/proxy"
1416
"google.golang.org/grpc"
1517
"google.golang.org/grpc/connectivity"
16-
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1718

1819
"github.com/operator-framework/operator-lifecycle-manager/pkg/controller/registry"
19-
"github.com/operator-framework/operator-registry/pkg/client"
20+
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2021
)
2122

2223
type SourceMeta struct {

0 commit comments

Comments
 (0)