chore: code refinement

This commit is contained in:
Amitsingh Tanwar
2025-10-06 13:35:28 +05:30
parent e7761a8aa7
commit 938d65ef0c
2 changed files with 11 additions and 4 deletions

View File

@ -1397,10 +1397,10 @@ proxy_connector_http_status_code = false # If enabled, the http status code o
[list_dispute_supported_connectors] [list_dispute_supported_connectors]
connector_list = "worldpayvantiv" connector_list = "worldpayvantiv"
#[proxy] [proxy]
#http_url = "http://127.0.0.1:8081" # Proxy all HTTP traffic via this proxy http_url = "http://127.0.0.1:8081" # Proxy all HTTP traffic via this proxy
#https_url = "http://127.0.0.1:8081" # Proxy all HTTPS traffic via this proxy https_url = "http://127.0.0.1:8081" # Proxy all HTTPS traffic via this proxy
#bypass_proxy_urls = "" bypass_proxy_urls = ""
[internal_merchant_id_profile_id_auth] [internal_merchant_id_profile_id_auth]
enabled = false enabled = false

View File

@ -4379,6 +4379,11 @@ where
); );
let ucs_merchant_connector_account = merchant_connector_account.clone(); let ucs_merchant_connector_account = merchant_connector_account.clone();
let ucs_merchant_context = merchant_context.clone(); let ucs_merchant_context = merchant_context.clone();
let lineage_ids = grpc_client::LineageIds::new(
business_profile.merchant_id.clone(),
business_profile.get_id().clone(),
);
let ucs_header_payload = header_payload.clone();
// Update feature metadata to track Direct routing usage for stickiness // Update feature metadata to track Direct routing usage for stickiness
update_gateway_system_in_feature_metadata(payment_data, GatewaySystem::Direct)?; update_gateway_system_in_feature_metadata(payment_data, GatewaySystem::Direct)?;
@ -4411,6 +4416,8 @@ where
let _ = ucs_router_data let _ = ucs_router_data
.call_unified_connector_service( .call_unified_connector_service(
&ucs_state, &ucs_state,
&ucs_header_payload,
lineage_ids,
ucs_merchant_connector_account.clone(), ucs_merchant_connector_account.clone(),
&ucs_merchant_context, &ucs_merchant_context,
) )