Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ linters:
- revive # replacement for golint
- staticcheck
- typecheck
- unconvert
- unused
- whitespace
2 changes: 1 addition & 1 deletion pkg/metrics/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func newExporterSet(exporters map[string]StartExporter) *exporterSet {
func (es *exporterSet) String() string {
contents := make([]string, 0)
for k := range es.assignedExporters {
contents = append(contents, string(k))
contents = append(contents, k)
}
return fmt.Sprintf("%s", contents)
}
Expand Down