Skip to content

Commit 1ce7d45

Browse files
authored
Reduce update latency by using new config endpoint (#14)
* reduce update latency by using new config endpoint * increase version to 1.2.0
1 parent e357b0e commit 1ce7d45

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>cloud.eppo</groupId>
88
<artifactId>eppo-server-sdk</artifactId>
9-
<version>1.1.2</version>
9+
<version>1.2.0</version>
1010

1111
<name>${project.groupId}:${project.artifactId}</name>
1212
<description>Eppo Server-Side SDK for Java</description>

src/main/java/com/eppo/sdk/constants/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class Constants {
77
/**
88
* Base URL
99
*/
10-
public static final String DEFAULT_BASE_URL = "https://eppo.cloud/api";
10+
public static final String DEFAULT_BASE_URL = "https://fscdn.eppo.cloud/api";
1111
public static final int REQUEST_TIMEOUT_MILLIS = 1000;
1212

1313
/**
@@ -31,7 +31,7 @@ public class Constants {
3131
/**
3232
* RAC settings
3333
*/
34-
public static final String RAC_ENDPOINT = "/randomized_assignment/v2/config";
34+
public static final String RAC_ENDPOINT = "/randomized_assignment/v3/config";
3535

3636

3737
/**

0 commit comments

Comments
 (0)