aboutsummaryrefslogtreecommitdiff
path: root/src/api/error.rs
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-04-06 05:25:28 +0200
committerTrinity Pointard <trinity.pointard@gmail.com>2021-04-06 05:28:47 +0200
commitc8906f200bf907272bf9fba7d183df4332fa085b (patch)
tree68aea7345bd95761f016976fbf0c183bee1e7092 /src/api/error.rs
parent653d3d588f912bcf86b24c456f23d6db0ca755d8 (diff)
downloadgarage-c8906f200bf907272bf9fba7d183df4332fa085b.tar.gz
garage-c8906f200bf907272bf9fba7d183df4332fa085b.zip
make most requested changes
Diffstat (limited to 'src/api/error.rs')
-rw-r--r--src/api/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/error.rs b/src/api/error.rs
index acd8ebf7..ad0174ad 100644
--- a/src/api/error.rs
+++ b/src/api/error.rs
@@ -29,7 +29,7 @@ pub enum Error {
NotFound,
// Category: bad request
- /// The request used an invalid path
+ /// The request contained an invalid UTF-8 sequence in its path or in other parameters
#[error(display = "Invalid UTF-8: {}", _0)]
InvalidUTF8Str(#[error(source)] std::str::Utf8Error),
@@ -65,7 +65,7 @@ impl From<roxmltree::Error> for Error {
}
impl Error {
- /// Convert an error into an Http status code
+ /// Get the HTTP status code that best represents the meaning of the error for the client
pub fn http_status_code(&self) -> StatusCode {
match self {
Error::NotFound => StatusCode::NOT_FOUND,