Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] make update-otel #18443

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change Visit -> VisitAll
Signed-off-by: Alex Boten <[email protected]>
  • Loading branch information
Alex Boten committed Feb 7, 2023
commit bdd62b88708508d32d759f6fa7f617fe000c38e0
2 changes: 1 addition & 1 deletion pkg/translator/prometheus/normalize_name.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ type Normalizer struct {

func NewNormalizer(registry *featuregate.Registry) *Normalizer {
var normalizeGate *featuregate.Gate
registry.Visit(func(gate *featuregate.Gate) {
registry.VisitAll(func(gate *featuregate.Gate) {
if gate.ID() == normalizeNameGate.ID() {
normalizeGate = gate
}
Expand Down