feat(core): add one-way TLS support with CA certificate for ArchiPEL UAT environment (#8128)

Co-authored-by: Debarati Ghatak <debarati.ghatak@Debarati-Ghatak-FW569NC29L.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Debarati Ghatak
2025-05-25 20:55:28 +05:30
committed by GitHub
parent 0465886f07
commit e655832908
13 changed files with 101 additions and 11206 deletions

View File

@ -5123,7 +5123,12 @@ pub async fn tokenize_card_flow(
);
let builder =
tokenize::NetworkTokenizationBuilder::<tokenize::TokenizeWithPmId>::default();
execute_payment_method_tokenization(executor, builder, payment_method).await
Box::pin(execute_payment_method_tokenization(
executor,
builder,
payment_method,
))
.await
}
}
}

View File

@ -156,7 +156,7 @@ async fn get_oidc_reqwest_client(
state: &SessionState,
request: oidc::HttpRequest,
) -> Result<oidc::HttpResponse, ApiClientError> {
let client = client::create_client(&state.conf.proxy, None, None)
let client = client::create_client(&state.conf.proxy, None, None, None)
.map_err(|e| e.current_context().switch())?;
let mut request_builder = client