mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 09:38:33 +08:00
fix(process_tracker): log and ignore the duplicate entry error (#1502)
This commit is contained in:
@ -134,7 +134,9 @@ where
|
|||||||
operation
|
operation
|
||||||
.to_domain()?
|
.to_domain()?
|
||||||
.add_task_to_process_tracker(state, &payment_data.payment_attempt)
|
.add_task_to_process_tracker(state, &payment_data.payment_attempt)
|
||||||
.await?;
|
.await
|
||||||
|
.map_err(|error| logger::error!(process_tracker_error=?error))
|
||||||
|
.ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
payment_data = match connector_details {
|
payment_data = match connector_details {
|
||||||
|
|||||||
Reference in New Issue
Block a user