web/api/v1: rename http status code. (#7864)

Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
johncming 2020-08-28 18:18:31 +08:00 committed by GitHub
parent d30f202c08
commit a14245b4b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1514,7 +1514,7 @@ func (api *API) respondError(w http.ResponseWriter, apiErr *apiError, data inter
case errorBadData: case errorBadData:
code = http.StatusBadRequest code = http.StatusBadRequest
case errorExec: case errorExec:
code = 422 code = http.StatusUnprocessableEntity
case errorCanceled, errorTimeout: case errorCanceled, errorTimeout:
code = http.StatusServiceUnavailable code = http.StatusServiceUnavailable
case errorInternal: case errorInternal: