Skip to content

Commit

Permalink
increasing tests timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianoviana committed Oct 9, 2024
1 parent b910f90 commit 4261a63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void evaluate() throws Throwable
};
}
};
public static final long LONG_TEST_TIMEOUT_IN_MS = 20_000L;
public static final long LONG_TEST_TIMEOUT_IN_MS = 50_000L;

static final int AWAIT_TIMEOUT_IN_MS = 10_000;
static final int TIMEOUT_EPSILON_IN_MS = 10;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public final class Timing
{
// Long timeout, but one that doesn't cause long overflow.
public static final long DEFAULT_TIMEOUT_IN_MS = isDebuggerAttached() ? Integer.MAX_VALUE : 20_000;
public static final long DEFAULT_TIMEOUT_IN_MS = isDebuggerAttached() ? Integer.MAX_VALUE : 49_000;

public static <T> T withTimeout(final String message, final Supplier<Optional<T>> supplier, final long timeoutInMs)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public final class SystemTestUtil
static final String INITIATOR_ID2 = "initiator2";
static final String INITIATOR_ID3 = "initiator3";
public static final String CLIENT_LOGS = "client-logs";
static final long TIMEOUT_IN_MS = 100;
static final long TIMEOUT_IN_MS = 1000;
static final long AWAIT_TIMEOUT_IN_MS = 50 * TIMEOUT_IN_MS;
static final int LIBRARY_LIMIT = 2;

Expand Down

0 comments on commit 4261a63

Please sign in to comment.