From 0ad11e8ed6987433e4bbaa3957dc6fc77152fefa Mon Sep 17 00:00:00 2001 From: Sai Harsha Vardhan <56996463+sai-harsha-vardhan@users.noreply.github.com> Date: Thu, 19 Dec 2024 15:20:44 +0530 Subject: [PATCH] fix(connector): [UNIFIED_AUTHENTICATION_SERVICE] change url path to `pre_authentication_processing` in pre-auth flow (#6885) --- .typos.toml | 1 - .../src/connectors/unified_authentication_service.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.typos.toml b/.typos.toml index 67f819c2c52c..983ead3f75d6 100644 --- a/.typos.toml +++ b/.typos.toml @@ -60,7 +60,6 @@ nin = "nin" # National identification number, a field used by PayU connector requestor = "requestor" #Used in external 3ds flows substituters = "substituters" # Present in `flake.nix` unsuccess = "unsuccess" # Used in cryptopay request -authetication = "authetication" #UAS pre-authentication URL [files] extend-exclude = [ diff --git a/crates/hyperswitch_connectors/src/connectors/unified_authentication_service.rs b/crates/hyperswitch_connectors/src/connectors/unified_authentication_service.rs index e820a07b350c..00d2d31cd1a5 100644 --- a/crates/hyperswitch_connectors/src/connectors/unified_authentication_service.rs +++ b/crates/hyperswitch_connectors/src/connectors/unified_authentication_service.rs @@ -189,7 +189,7 @@ impl connectors: &Connectors, ) -> CustomResult { Ok(format!( - "{}pre_authetication_processing", + "{}pre_authentication_processing", self.base_url(connectors) )) }