HTTP 423 can be replaced by http.StatusLocked

https://golang.org/src/net/http/status.go?h=StatusLocked#L55
This commit is contained in:
oliverpool 2017-01-27 07:50:26 +01:00 committed by GitHub
parent b05382eced
commit b5820d6624
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ var (
ErrInvalidUploadLength = NewHTTPError(errors.New("missing or invalid Upload-Length header"), http.StatusBadRequest)
ErrInvalidOffset = NewHTTPError(errors.New("missing or invalid Upload-Offset header"), http.StatusBadRequest)
ErrNotFound = NewHTTPError(errors.New("upload not found"), http.StatusNotFound)
ErrFileLocked = NewHTTPError(errors.New("file currently locked"), 423) // Locked (WebDAV) (RFC 4918)
ErrFileLocked = NewHTTPError(errors.New("file currently locked"), http.StatusLocked)
ErrMismatchOffset = NewHTTPError(errors.New("mismatched offset"), http.StatusConflict)
ErrSizeExceeded = NewHTTPError(errors.New("resource's size exceeded"), http.StatusRequestEntityTooLarge)
ErrNotImplemented = NewHTTPError(errors.New("feature not implemented"), http.StatusNotImplemented)