Commit 8d633458 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #18148 from feihujiang/addEnumTypeForStatusReansonConstants

Auto commit by PR queue bot
parents ab8dbd22 ad10ca1d
...@@ -239,13 +239,13 @@ const ( ...@@ -239,13 +239,13 @@ const (
// Details (optional): // Details (optional):
// "causes" - The original error // "causes" - The original error
// Status code 500 // Status code 500
StatusReasonInternalError = "InternalError" StatusReasonInternalError StatusReason = "InternalError"
// StatusReasonExpired indicates that the request is invalid because the content you are requesting // StatusReasonExpired indicates that the request is invalid because the content you are requesting
// has expired and is no longer available. It is typically associated with watches that can't be // has expired and is no longer available. It is typically associated with watches that can't be
// serviced. // serviced.
// Status code 410 (gone) // Status code 410 (gone)
StatusReasonExpired = "Expired" StatusReasonExpired StatusReason = "Expired"
// StatusReasonServiceUnavailable means that the request itself was valid, // StatusReasonServiceUnavailable means that the request itself was valid,
// but the requested service is unavailable at this time. // but the requested service is unavailable at this time.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment