feat(connector): add payment create, sync, capture, refund, void, rsync support for PayU (#351)

Co-authored-by: samraat bansal <samraat.bansal@samraat.bansal-MacBookPro>
This commit is contained in:
SamraatBansal
2023-01-14 13:07:04 +05:30
committed by GitHub
parent 89a1cd0885
commit 55dba87651
14 changed files with 1504 additions and 9 deletions

View File

@ -41,7 +41,7 @@ pub(super) fn create_client(
client_certificate: Option<String>,
client_certificate_key: Option<String>,
) -> CustomResult<reqwest::Client, errors::ApiClientError> {
let mut client_builder = reqwest::Client::builder();
let mut client_builder = reqwest::Client::builder().redirect(reqwest::redirect::Policy::none());
if !should_bypass_proxy {
if let Some(url) = ProxyType::Http.get_proxy_url(proxy) {