We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27f1458 commit 4ee99ecCopy full SHA for 4ee99ec
functions/helloworld/hello-http/src/test/java/functions/ExampleIntegrationTest.java
@@ -74,7 +74,7 @@ public void helloHttp_shouldRunWithFunctionsFramework() throws Throwable {
74
// Use resilience4j to retry the test HTTP request until the plugin responds
75
RetryRegistry registry = RetryRegistry.of(RetryConfig.custom()
76
.maxAttempts(8)
77
- .intervalFunction(IntervalFunction.ofExponentialBackoff(200, 2))
+ .intervalFunction(IntervalFunction.ofExponentialBackoff(200, 3))
78
.retryExceptions(IOException.class)
79
.build());
80
Retry retry = registry.retry("my");
0 commit comments