From c75d8cdec53689c2b6500135c0d2bb3a58173f65 Mon Sep 17 00:00:00 2001 From: CHALLA NISHANTH BABU <115225644+NISHANTH1221@users.noreply.github.com> Date: Fri, 4 Apr 2025 14:41:26 +0530 Subject: [PATCH] fix(config): add billing payment sync configs in different environments (#7708) Co-authored-by: Nishanth Challa --- config/deployments/integration_test.toml | 3 +++ config/deployments/production.toml | 3 +++ config/deployments/sandbox.toml | 3 +++ loadtest/config/development.toml | 3 +++ 4 files changed, 12 insertions(+) diff --git a/config/deployments/integration_test.toml b/config/deployments/integration_test.toml index 992bdcbf61..87a6e4f951 100644 --- a/config/deployments/integration_test.toml +++ b/config/deployments/integration_test.toml @@ -561,3 +561,6 @@ connector_list = "cybersource" [platform] enabled = true + +[billing_connectors_payment_sync] +billing_connectors_which_require_payment_sync = "stripebilling" diff --git a/config/deployments/production.toml b/config/deployments/production.toml index 4b3a3edb84..c70c8978a3 100644 --- a/config/deployments/production.toml +++ b/config/deployments/production.toml @@ -576,3 +576,6 @@ connector_list = "cybersource" [platform] enabled = false + +[billing_connectors_payment_sync] +billing_connectors_which_require_payment_sync = "stripebilling" diff --git a/config/deployments/sandbox.toml b/config/deployments/sandbox.toml index eb15c4df03..56ddcead55 100644 --- a/config/deployments/sandbox.toml +++ b/config/deployments/sandbox.toml @@ -577,3 +577,6 @@ connector_list = "cybersource" [platform] enabled = false + +[billing_connectors_payment_sync] +billing_connectors_which_require_payment_sync = "stripebilling" diff --git a/loadtest/config/development.toml b/loadtest/config/development.toml index 08a7e59357..128ca688a6 100644 --- a/loadtest/config/development.toml +++ b/loadtest/config/development.toml @@ -530,3 +530,6 @@ sts_role_session_name = "" [temp_locker_enable_config] paybox = { payment_method = "card" } redsys = { payment_method = "card" } + +[billing_connectors_payment_sync] +billing_connectors_which_require_payment_sync = "stripebilling" \ No newline at end of file