File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ repositories {
30
30
}
31
31
32
32
dependencies {
33
- api ' cloud.eppo:sdk-common-jvm:3.5.0 '
33
+ api ' cloud.eppo:sdk-common-jvm:3.5.2 '
34
34
35
35
implementation ' com.github.zafarkhaja:java-semver:0.10.2'
36
36
implementation ' com.fasterxml.jackson.core:jackson-databind:2.17.1'
Original file line number Diff line number Diff line change 20
20
public class EppoClient extends BaseEppoClient {
21
21
private static final Logger log = LoggerFactory .getLogger (EppoClient .class );
22
22
23
- private static final String DEFAULT_HOST = "https://fscdn.eppo.cloud" ;
24
23
private static final boolean DEFAULT_IS_GRACEFUL_MODE = true ;
25
24
private static final boolean DEFAULT_FORCE_REINITIALIZE = false ;
26
25
private static final long DEFAULT_POLLING_INTERVAL_MS = 30 * 1000 ;
@@ -77,7 +76,7 @@ public static class Builder {
77
76
private boolean isGracefulMode = DEFAULT_IS_GRACEFUL_MODE ;
78
77
private boolean forceReinitialize = DEFAULT_FORCE_REINITIALIZE ;
79
78
private long pollingIntervalMs = DEFAULT_POLLING_INTERVAL_MS ;
80
- private String host = DEFAULT_HOST ;
79
+ private String host = Constants . DEFAULT_BASE_URL ;
81
80
82
81
// Assignment and bandit caching on by default. To disable, call
83
82
// `builder.assignmentCache(null).banditAssignmentCache(null);`
You can’t perform that action at this time.
0 commit comments