We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3432536 commit da8807eCopy full SHA for da8807e
src/test/java/dev/openfga/sdk/api/client/HttpRequestAttemptRetryTest.java
@@ -556,7 +556,7 @@ void shouldUseRetryAfterWhenLargerThanGlobalMinimumDelay() throws Exception {
556
557
assertThat(totalTime.toMillis())
558
.isGreaterThan(1200); // Should be at least ~2 seconds (with larger CI tolerance)
559
- assertThat(totalTime.toMillis()).isLessThan(10000); // But not excessive
+ assertThat(totalTime.toMillis()).isLessThan(15000); // But not excessive
560
561
// Verify both requests were made
562
wireMockServer.verify(2, getRequestedFor(urlEqualTo("/test")));
0 commit comments