fix(router): fail refund with bad request error for duplicate refund_id in refunds create flow (#5282)

This commit is contained in:
Sai Harsha Vardhan
2024-07-11 20:29:55 +05:30
committed by GitHub
parent 68adda036d
commit f63a678d71

View File

@ -836,13 +836,7 @@ pub async fn validate_and_create_refund(
}
Err(err) => {
if err.current_context().is_db_unique_violation() {
db.find_refund_by_merchant_id_refund_id(
merchant_account.merchant_id.as_str(),
refund_id.as_str(),
merchant_account.storage_scheme,
)
.await
.to_not_found_response(errors::ApiErrorResponse::RefundNotFound)?
Err(errors::ApiErrorResponse::DuplicateRefundRequest)?
} else {
return Err(err)
.change_context(errors::ApiErrorResponse::RefundNotFound)