X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/34c4b3001b3aafc91213f02689d6e61977ad29b3..55da806a494b13e88ee1b0c1e6cad211786628f3:/sdk/go/health/handler.go diff --git a/sdk/go/health/handler.go b/sdk/go/health/handler.go index aef72c2c81..81b9587c36 100644 --- a/sdk/go/health/handler.go +++ b/sdk/go/health/handler.go @@ -37,14 +37,14 @@ type Handler struct { // Map of URI paths to health-check Func. The prefix is // omitted: Routes["foo"] is the health check invoked by a - // request to "/_health/foo". + // request to "{Prefix}/foo". // // If "ping" is not listed here, it will be added // automatically and will always return a "healthy" response. Routes Routes // If non-nil, Log is called after handling each request. The - // error argument is nil if the request was succesfully + // error argument is nil if the request was successfully // authenticated and served, even if the health check itself // failed. Log func(*http.Request, error)