aboutsummaryrefslogtreecommitdiff
path: root/src/api/signature
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-05-18 00:27:57 +0200
committerAlex Auvolat <alex@adnab.me>2022-05-18 00:27:57 +0200
commit926b3c0fadcd10b4ef75c7d8995170ac3d16ca89 (patch)
tree282fafdc0a16d451cf448d5ff443fb6131f4397e /src/api/signature
parentdcfa408887b588e9f9eee608c1358a5a81330e9e (diff)
downloadgarage-926b3c0fadcd10b4ef75c7d8995170ac3d16ca89.tar.gz
garage-926b3c0fadcd10b4ef75c7d8995170ac3d16ca89.zip
Rename error varian for Clippy
Diffstat (limited to 'src/api/signature')
-rw-r--r--src/api/signature/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/signature/error.rs b/src/api/signature/error.rs
index 3ef5cdcd..f5a067bd 100644
--- a/src/api/signature/error.rs
+++ b/src/api/signature/error.rs
@@ -8,7 +8,7 @@ pub use crate::common_error::{CommonErrorDerivative, OkOrBadRequest, OkOrInterna
pub enum Error {
#[error(display = "{}", _0)]
/// Error from common error
- CommonError(CommonError),
+ Common(CommonError),
/// Authorization Header Malformed
#[error(display = "Authorization header malformed, expected scope: {}", _0)]
@@ -29,7 +29,7 @@ where
CommonError: From<T>,
{
fn from(err: T) -> Self {
- Error::CommonError(CommonError::from(err))
+ Error::Common(CommonError::from(err))
}
}