mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
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:
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user