Skip to content

Commit

Permalink
Try to increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-sammons committed Feb 27, 2025
1 parent b9e5f69 commit 6700872
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ public void setUp() throws Exception {
com.slack.astra.proto.config.AstraConfigs.ZookeeperConfig.newBuilder()
.setZkConnectString(testingServer.getConnectString())
.setZkPathPrefix("CacheNodeAssignmentServiceTest")
.setZkSessionTimeoutMs(1000)
.setZkConnectionTimeoutMs(1000)
.setZkSessionTimeoutMs(10000)
.setZkConnectionTimeoutMs(10000)
.setSleepBetweenRetriesMs(1000)
.setZkCacheInitTimeoutMs(1000)
.setZkCacheInitTimeoutMs(10000)
.build();

AstraConfigs.ManagerConfig.CacheNodeAssignmentServiceConfig cacheNodeAssignmentServiceConfig =
Expand Down

0 comments on commit 6700872

Please sign in to comment.