Skip to content

Commit

Permalink
Bump valkey 8 wait timeout (#2593)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Carbonetto <[email protected]>
  • Loading branch information
acarbonetto authored Nov 6, 2024
1 parent f0fbaea commit f022959
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/integTest/src/test/java/glide/SharedClientTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;

@Timeout(25) // seconds
@Timeout(35) // seconds
public class SharedClientTests {

private static GlideClient standaloneClient = null;
Expand Down
4 changes: 2 additions & 2 deletions java/integTest/src/test/java/glide/cluster/CommandTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
import org.junit.jupiter.params.provider.MethodSource;
import org.junit.jupiter.params.provider.ValueSource;

@Timeout(10) // seconds
@Timeout(30) // seconds
public class CommandTests {

private static GlideClusterClient clusterClient = null;
Expand Down Expand Up @@ -1660,7 +1660,7 @@ public void fcall_readonly_function() {

assertEquals(libName, clusterClient.functionLoad(code, false).get());
// let replica sync with the primary node
assertEquals(1L, clusterClient.wait(1L, 3000L).get());
assertEquals(1L, clusterClient.wait(1L, 4000L).get());

// fcall on a replica node should fail, because a function isn't guaranteed to be RO
var executionException =
Expand Down

0 comments on commit f022959

Please sign in to comment.