Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ private BrazeIntegrationFactory(Object config, RudderConfig rudderConfig) {
case "US-06":
customEndPoint = "sdk.iad-06.braze.com";
break;
case "US-07":
customEndPoint = "sdk.iad-07.braze.com";
break;
case "US-08":
customEndPoint = "sdk.iad-08.braze.com";
break;
Expand All @@ -223,6 +226,9 @@ private BrazeIntegrationFactory(Object config, RudderConfig rudderConfig) {
case "EU-02":
customEndPoint = "sdk.fra-02.braze.eu";
break;
case "AU-01":
customEndPoint = "sdk.au-01.braze.com";
break;
}
if (customEndPoint == null) {
RudderLogger.logError("CustomEndPointUrl is blank or incorrect. Aborting Braze initialization.");
Expand Down