mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
28 lines
1.1 KiB
Go
28 lines
1.1 KiB
Go
|
package errors
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/docker/distribution/registry/api/errcode"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ErrorCodeNewerClientVersion is generated when a request from a client
|
||
|
// specifies a higher version than the server supports.
|
||
|
ErrorCodeNewerClientVersion = errcode.Register(errGroup, errcode.ErrorDescriptor{
|
||
|
Value: "NEWERCLIENTVERSION",
|
||
|
Message: "client is newer than server (client API version: %s, server API version: %s)",
|
||
|
Description: "The client version is higher than the server version",
|
||
|
HTTPStatusCode: http.StatusBadRequest,
|
||
|
})
|
||
|
|
||
|
// ErrorCodeOldClientVersion is generated when a request from a client
|
||
|
// specifies a version lower than the minimum version supported by the server.
|
||
|
ErrorCodeOldClientVersion = errcode.Register(errGroup, errcode.ErrorDescriptor{
|
||
|
Value: "OLDCLIENTVERSION",
|
||
|
Message: "client version %s is too old. Minimum supported API version is %s, please upgrade your client to a newer version",
|
||
|
Description: "The client version is too old for the server",
|
||
|
HTTPStatusCode: http.StatusBadRequest,
|
||
|
})
|
||
|
)
|