diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-21 17:41:21 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-21 17:43:42 +0200 |
commit | dbe457d3fa2b2d83e57ffdd55a18046688494de0 (patch) | |
tree | b97e07f1d3ef5e046d3334bd135740ad6b9c5268 /src/web/error.rs | |
parent | bff5333c622ce5c8c3a151b4bd2d7ad2d04004c2 (diff) | |
download | garage-dbe457d3fa2b2d83e57ffdd55a18046688494de0.tar.gz garage-dbe457d3fa2b2d83e57ffdd55a18046688494de0.zip |
Improve clarity0.4-alpha
Diffstat (limited to 'src/web/error.rs')
-rw-r--r-- | src/web/error.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/web/error.rs b/src/web/error.rs index 2ed7139f..426155c1 100644 --- a/src/web/error.rs +++ b/src/web/error.rs @@ -39,7 +39,9 @@ impl Error { Error::NotFound => StatusCode::NOT_FOUND, Error::ApiError(e) => e.http_status_code(), Error::InternalError( - GarageError::Timeout | GarageError::RemoteError(_) | GarageError::Quorum(_, _, _), + GarageError::Timeout + | GarageError::RemoteError(_) + | GarageError::Quorum(_, _, _, _), ) => StatusCode::SERVICE_UNAVAILABLE, Error::InternalError(_) => StatusCode::INTERNAL_SERVER_ERROR, _ => StatusCode::BAD_REQUEST, |