diff options
author | Alex <alex@adnab.me> | 2023-02-03 13:22:40 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-02-03 13:22:40 +0000 |
commit | fba8224cf00f7c542150e48a88c22025ff03b948 (patch) | |
tree | abab1006ff0f2e68ff377816ab52919310ccdfa4 /src | |
parent | 30f1636a00ffc60d1c9ac1d3781ccee21669e54d (diff) | |
parent | 1b6ec74748f1182fbfb9b4ce934351b000ccab22 (diff) | |
download | garage-fba8224cf00f7c542150e48a88c22025ff03b948.tar.gz garage-fba8224cf00f7c542150e48a88c22025ff03b948.zip |
Merge pull request 'error.rs: Corrected error message to say unexpected scope.' (#497) from jpds/garage:authorization-header-unexpected-scope into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/497
Diffstat (limited to 'src')
-rw-r--r-- | src/api/k2v/error.rs | 2 | ||||
-rw-r--r-- | src/api/s3/error.rs | 2 | ||||
-rw-r--r-- | src/api/signature/error.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/api/k2v/error.rs b/src/api/k2v/error.rs index 42491466..4eb017ab 100644 --- a/src/api/k2v/error.rs +++ b/src/api/k2v/error.rs @@ -19,7 +19,7 @@ pub enum Error { // Category: cannot process /// Authorization Header Malformed - #[error(display = "Authorization header malformed, expected scope: {}", _0)] + #[error(display = "Authorization header malformed, unexpected scope: {}", _0)] AuthorizationHeaderMalformed(String), /// The object requested don't exists diff --git a/src/api/s3/error.rs b/src/api/s3/error.rs index 67009d63..c50cff9f 100644 --- a/src/api/s3/error.rs +++ b/src/api/s3/error.rs @@ -21,7 +21,7 @@ pub enum Error { // Category: cannot process /// Authorization Header Malformed - #[error(display = "Authorization header malformed, expected scope: {}", _0)] + #[error(display = "Authorization header malformed, unexpected scope: {}", _0)] AuthorizationHeaderMalformed(String), /// The object requested don't exists diff --git a/src/api/signature/error.rs b/src/api/signature/error.rs index f5a067bd..f0d7c816 100644 --- a/src/api/signature/error.rs +++ b/src/api/signature/error.rs @@ -11,7 +11,7 @@ pub enum Error { Common(CommonError), /// Authorization Header Malformed - #[error(display = "Authorization header malformed, expected scope: {}", _0)] + #[error(display = "Authorization header malformed, unexpected scope: {}", _0)] AuthorizationHeaderMalformed(String), // Category: bad request |