Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Oct 29, 2024
1 parent b0c697a commit 225f86d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func main() {
if len(*lookupFlag) > 0 {
printReport(*lookupFlag)
} else {
runHttpServer()
runHTTPServer()
}
}

Expand Down Expand Up @@ -172,8 +172,8 @@ func writeTextResponse(
}
}

// runHttpServer starts an HTTP daemon, serving requests for federation tests. Never exits.
func runHttpServer() {
// runHTTPServer starts an HTTP daemon, serving requests for federation tests. Never exits.
func runHTTPServer() {
// Create a new Prometheus registry, because I can't figure out how to get a
// handle to the default registry
registry := prometheus.NewPedanticRegistry()
Expand Down

0 comments on commit 225f86d

Please sign in to comment.