fix(update_trackers): handle preprocessing steps status update (#1496)

Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in>
This commit is contained in:
Narayan Bhat
2023-06-22 09:22:09 +05:30
committed by GitHub
parent 424e77c912
commit b45231468d
9 changed files with 58 additions and 39 deletions

View File

@ -97,13 +97,14 @@ pub trait Feature<F, T> {
Ok(None)
}
/// Returns the connector request and a bool which specifies whether to proceed with further
async fn build_flow_specific_connector_request(
&mut self,
_state: &AppState,
_connector: &api::ConnectorData,
_call_connector_action: payments::CallConnectorAction,
) -> RouterResult<Option<services::Request>> {
Ok(None)
) -> RouterResult<(Option<services::Request>, bool)> {
Ok((None, true))
}
}