Skip to content

Commit 82d6421

Browse files
authored
Merge pull request #19 from jbragagnolo/fix/healthcheckroute
Fix Route.
2 parents 2027a83 + b05ebfa commit 82d6421

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func main() {
157157
}
158158

159159
r := mux.NewRouter()
160-
r.HandleFunc("/_health}", wrapper(HealthCheckHandler)).Methods("GET", "HEAD")
160+
r.HandleFunc("/_health", wrapper(HealthCheckHandler)).Methods("GET", "HEAD")
161161
r.HandleFunc("/{bucket:[0-9a-zA-Z-_.]+}/{object:.*}", wrapper(proxy)).Methods("GET", "HEAD")
162162

163163
log.Printf("[service] listening on %s", *bind)

0 commit comments

Comments
 (0)