We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2537edb commit 6bb1707Copy full SHA for 6bb1707
dotnet/src/IntegrationTests/BaseIntegrationTest.cs
@@ -22,11 +22,11 @@ protected IKernelBuilder CreateKernelBuilder()
22
o.Retry.ShouldHandle = args => ValueTask.FromResult(args.Outcome.Result?.StatusCode is HttpStatusCode.TooManyRequests);
23
o.CircuitBreaker = new HttpCircuitBreakerStrategyOptions
24
{
25
- SamplingDuration = TimeSpan.FromSeconds(40.0), // The duration should be least double of an attempt timeout
+ SamplingDuration = TimeSpan.FromSeconds(60.0), // The duration should be least double of an attempt timeout
26
};
27
o.AttemptTimeout = new HttpTimeoutStrategyOptions
28
29
- Timeout = TimeSpan.FromSeconds(20.0) // Doubling the default 10s timeout
+ Timeout = TimeSpan.FromSeconds(30.0)
30
31
});
32
0 commit comments