build(deps): bump error-stack from version 0.3.1 to 0.4.1 (#4188)

This commit is contained in:
Sanchith Hegde
2024-04-01 12:31:17 +05:30
committed by GitHub
parent cb2000b088
commit ea730d4ffc
286 changed files with 1361 additions and 2397 deletions

View File

@ -10,7 +10,7 @@ use diesel::{
serialize::{Output, ToSql},
sql_types, AsExpression,
};
use error_stack::{IntoReport, ResultExt};
use error_stack::ResultExt;
use masking::{ExposeInterface, Secret, Strategy, WithType};
#[cfg(feature = "logs")]
use router_env::logger;
@ -308,8 +308,8 @@ impl FromStr for Email {
}
Err(_) => Err(ValidationError::InvalidValue {
message: "Invalid email address format".into(),
})
.into_report(),
}
.into()),
}
}
}