fix(connector): [Bluesnap] Throw proper error message for redirection scenario (#1367)

Signed-off-by: chikke srujan <121822803+srujanchikke@users.noreply.github.com>
Co-authored-by: Prasunna Soppa <prasunna.soppa@juspay.in>
This commit is contained in:
chikke srujan
2023-06-09 19:38:28 +05:30
committed by GitHub
parent 86f679abc1
commit 4a8de7741d
11 changed files with 192 additions and 92 deletions

View File

@ -937,7 +937,11 @@ where
pub enum CallConnectorAction {
Trigger,
Avoid,
StatusUpdate(storage_enums::AttemptStatus),
StatusUpdate {
status: storage_enums::AttemptStatus,
error_code: Option<String>,
error_message: Option<String>,
},
HandleResponse(Vec<u8>),
}