Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
Fix goimports
Browse files Browse the repository at this point in the history
  • Loading branch information
tnsetting committed Feb 5, 2021
1 parent 7c2a395 commit d10d5a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/async/notifications/implementations/event_publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package implementations

import (
"context"
"k8s.io/apimachinery/pkg/util/sets"
"strings"

"k8s.io/apimachinery/pkg/util/sets"

"github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"

"github.com/lyft/flyteadmin/pkg/async/notifications/interfaces"
Expand Down Expand Up @@ -67,7 +68,7 @@ func newEventPublisherSystemMetrics(scope promutils.Scope) eventPublisherSystemM
return eventPublisherSystemMetrics{
Scope: scope,
PublishTotal: scope.MustNewCounter("event_publish_total", "overall count of publish messages"),
PublishSuccess: scope.MustNewCounter("event_publish_success", "sucess count of publish messages"),
PublishSuccess: scope.MustNewCounter("event_publish_success", "success count of publish messages"),
PublishError: scope.MustNewCounter("event_publish_errors", "count of publish errors"),
}
}
Expand Down

0 comments on commit d10d5a0

Please sign in to comment.