Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Nov 26, 2024
1 parent 3f9b677 commit 5f50b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/alerting/alerting.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ func (a *Alerter) sendTelemetryMessage(
logger.Warn("failed to get flow tags", slog.Any("error", err))
} else {
for key, value := range flowTags {
allTags = append(allTags, key, value)
allTags = append(allTags, fmt.Sprintf("%s:%s", key, value))
}
}

Expand Down

0 comments on commit 5f50b49

Please sign in to comment.