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

@ -23,7 +23,7 @@ use diesel_models::{
},
reverse_lookup::{ReverseLookup, ReverseLookupNew},
};
use error_stack::{IntoReport, ResultExt};
use error_stack::ResultExt;
use redis_interface::HsetnxReply;
use router_env::{instrument, tracing};
@ -299,7 +299,6 @@ impl<T: DatabaseStore> PaymentAttemptInterface for RouterStore<T> {
.get_replica_pool()
.get()
.await
.into_report()
.change_context(errors::StorageError::DatabaseConnectionError)?;
let connector_strings = connector.as_ref().map(|connector| {
connector
@ -449,8 +448,8 @@ impl<T: DatabaseStore> PaymentAttemptInterface for KVRouterStore<T> {
Ok(HsetnxReply::KeyNotSet) => Err(errors::StorageError::DuplicateValue {
entity: "payment attempt",
key: Some(key),
})
.into_report(),
}
.into()),
Ok(HsetnxReply::KeySet) => Ok(created_attempt),
Err(error) => Err(error.change_context(errors::StorageError::KVError)),
}
@ -483,7 +482,6 @@ impl<T: DatabaseStore> PaymentAttemptInterface for KVRouterStore<T> {
);
// Check for database presence as well Maybe use a read replica here ?
let redis_value = serde_json::to_string(&updated_attempt)
.into_report()
.change_context(errors::StorageError::KVError)?;
let field = format!("pa_{}", updated_attempt.attempt_id);

View File

@ -28,7 +28,7 @@ use diesel_models::{
query::generics::db_metrics,
schema::{payment_attempt::dsl as pa_dsl, payment_intent::dsl as pi_dsl},
};
use error_stack::{IntoReport, ResultExt};
use error_stack::ResultExt;
use redis_interface::HsetnxReply;
#[cfg(feature = "olap")]
use router_env::logger;
@ -128,8 +128,8 @@ impl<T: DatabaseStore> PaymentIntentInterface for KVRouterStore<T> {
Ok(HsetnxReply::KeyNotSet) => Err(StorageError::DuplicateValue {
entity: "payment_intent",
key: Some(key),
})
.into_report(),
}
.into()),
Ok(HsetnxReply::KeySet) => Ok(created_intent),
Err(error) => Err(error.change_context(StorageError::KVError)),
}
@ -508,8 +508,8 @@ impl<T: DatabaseStore> PaymentIntentInterface for crate::RouterStore<T> {
error_stack::report!(diesel_models::errors::DatabaseError::from(er))
.attach_printable("Error filtering payment records"),
)
.into()
})
.into_report()
}
#[cfg(feature = "olap")]
@ -663,8 +663,8 @@ impl<T: DatabaseStore> PaymentIntentInterface for crate::RouterStore<T> {
error_stack::report!(diesel_models::errors::DatabaseError::from(er))
.attach_printable("Error filtering payment records"),
)
.into()
})
.into_report()
}
#[cfg(feature = "olap")]
@ -731,8 +731,8 @@ impl<T: DatabaseStore> PaymentIntentInterface for crate::RouterStore<T> {
error_stack::report!(diesel_models::errors::DatabaseError::from(er))
.attach_printable("Error filtering payment records"),
)
.into()
})
.into_report()
}
}