We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca76b0f commit a77fd66Copy full SHA for a77fd66
crates/router/src/core/admin.rs
@@ -654,8 +654,7 @@ pub async fn create_payment_connector(
654
))
655
.unwrap_or(format!(
656
"{}_{}",
657
- req.connector_name.to_string(),
658
- business_profile.profile_name
+ req.connector_name, business_profile.profile_name
659
));
660
661
let mut vec = Vec::new();
crates/router/src/core/verification/utils.rs
@@ -59,6 +59,7 @@ pub async fn check_existence_and_add_domain_to_db(
59
connector_webhook_details: None,
60
applepay_verified_domains: Some(already_verified_domains.clone()),
61
pm_auth_config: None,
62
+ connector_label: None,
63
};
64
state
65
.store
0 commit comments