mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(connector): [Bambora] Use connector_response_reference_id as reference to the connector (#2635)
This commit is contained in:
committed by
GitHub
parent
418715b816
commit
a9b5dc9ab7
@ -214,7 +214,7 @@ impl<F, T>
|
||||
mandate_reference: None,
|
||||
connector_metadata: None,
|
||||
network_txn_id: None,
|
||||
connector_response_reference_id: None,
|
||||
connector_response_reference_id: Some(pg_response.order_number.to_string()),
|
||||
}),
|
||||
..item.data
|
||||
}),
|
||||
@ -238,7 +238,9 @@ impl<F, T>
|
||||
.change_context(errors::ConnectorError::ResponseHandlingFailed)?,
|
||||
),
|
||||
network_txn_id: None,
|
||||
connector_response_reference_id: None,
|
||||
connector_response_reference_id: Some(
|
||||
item.data.connector_request_reference_id.to_string(),
|
||||
),
|
||||
}),
|
||||
..item.data
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user