Merge pull request #22762 from wangxing1517/fix_mistake_400_for_500

Fix bug which mistakes 400 error for 500
This commit is contained in:
Alexander Morozov 2016-05-19 12:04:52 -07:00
Родитель ebeb5a0422 beca261578
Коммит 376c15bbaa
9 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -49,6 +49,7 @@ func GetHTTPErrorStatusCode(err error) int {
"not found": http.StatusNotFound,
"no such": http.StatusNotFound,
"bad parameter": http.StatusBadRequest,
"no command": http.StatusBadRequest,
"conflict": http.StatusConflict,
"impossible": http.StatusNotAcceptable,
"wrong login/password": http.StatusUnauthorized,

Просмотреть файл

@ -116,6 +116,8 @@ This section lists each version from latest to oldest. Each listing includes a
* `GET /info` now returns `SecurityOptions` field, showing if `apparmor`, `seccomp`, or `selinux` is supported.
* `GET /networks` now supports filtering by `label` and `driver`.
* `POST /containers/create` now takes `MaximumIOps` and `MaximumIOBps` fields. Windows daemon only.
* `POST /containers/create` now returns a HTTP 400 "bad parameter" message
if no command is specified (instead of a HTTP 500 "server error")
### v1.23 API changes

Просмотреть файл

@ -292,6 +292,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -303,6 +303,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -307,6 +307,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -330,6 +330,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -438,6 +438,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -461,6 +461,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error

Просмотреть файл

@ -470,6 +470,7 @@ Query Parameters:
Status Codes:
- **201** – no error
- **400** – bad parameter
- **404** – no such container
- **406** – impossible to attach (container not running)
- **500** – server error