Skip to content

Commit b05ebfa

Browse files
committed
Fix Route.
1 parent 2027a83 commit b05ebfa

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)