Skip to content

Commit

Permalink
feat(connector): [BOA] Fix 5XX Error response
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanshu-iiitu committed Dec 20, 2023
1 parent 775f655 commit 8c74f43
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/router/src/connector/bankofamerica.rs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ impl ConnectorIntegration<api::Authorize, types::PaymentsAuthorizeData, types::P
.message
.unwrap_or(consts::NO_ERROR_MESSAGE.to_string()),
attempt_status,
connector_transaction_id: None,
})
}
}
Expand Down Expand Up @@ -587,7 +586,6 @@ impl ConnectorIntegration<api::Capture, types::PaymentsCaptureData, types::Payme
.message
.unwrap_or(consts::NO_ERROR_MESSAGE.to_string()),
attempt_status: None,
connector_transaction_id: None,
})
}
}
Expand Down Expand Up @@ -707,7 +705,6 @@ impl ConnectorIntegration<api::Void, types::PaymentsCancelData, types::PaymentsR
.message
.unwrap_or(consts::NO_ERROR_MESSAGE.to_string()),
attempt_status: None,
connector_transaction_id: None,
})
}
}
Expand Down

0 comments on commit 8c74f43

Please sign in to comment.