Skip to content

Commit

Permalink
fix: 🐛 typo in route
Browse files Browse the repository at this point in the history
Fix typo in endpoint healthz
  • Loading branch information
titigmr authored Aug 14, 2024
1 parent 296feb5 commit 0dc364d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func StartHTTPApi(provider provider.Provider, readTimeout, writeTimeout time.Dur
})

m := http.NewServeMux()
m.HandleFunc("/healtz", p.GetHealthz)
m.HandleFunc("/healthz", p.GetHealthz)
m.HandleFunc("/", p.NegotiateHandler)
m.HandleFunc("/records", p.RecordsHandler)
m.HandleFunc("/adjustendpoints", p.AdjustEndpointsHandler)
Expand Down

0 comments on commit 0dc364d

Please sign in to comment.