[skip ci]Add util healthz comment (#9171)

Signed-off-by: godchen <qingxiang.chen@zilliz.com>
pull/9182/head
godchen 2021-10-04 08:14:31 +08:00 committed by GitHub
parent 2792f85211
commit fd6eb5d187
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,8 @@
package healthz
const (
// ContentTypeHeader is the health check request type header.
ContentTypeHeader = "Content-Type"
ContentTypeText = "text/plain"
// ContentTypeHeader is the health check request type text.
ContentTypeText = "text/plain"
)

View File

@ -11,4 +11,5 @@
package healthz
// HealthzRouterPath is default path for check health state.
const HealthzRouterPath = "/healthz"