fix status-code for "locked" swarm and "certificate expired"
These errors were producing the wrong status code, changing to 503. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 7e44fffe40f39ef4cc0b3bee810f7d0a26136376 Component: engine
This commit is contained in:
@@ -64,6 +64,8 @@ func GetHTTPErrorStatusCode(err error) int {
|
||||
{"unauthorized", http.StatusUnauthorized},
|
||||
{"hasn't been activated", http.StatusForbidden},
|
||||
{"this node", http.StatusServiceUnavailable},
|
||||
{"needs to be unlocked", http.StatusServiceUnavailable},
|
||||
{"certificates have expired", http.StatusServiceUnavailable},
|
||||
} {
|
||||
if strings.Contains(errStr, status.keyword) {
|
||||
statusCode = status.code
|
||||
|
||||
Reference in New Issue
Block a user