core: fix outlier detection default ejection time (#9889)

This commit is contained in:
Terry Wilson 2023-02-13 14:40:31 -08:00 committed by GitHub
parent c194c71c50
commit d42678a3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -880,7 +880,7 @@ public final class OutlierDetectionLoadBalancer extends LoadBalancer {
public static class Builder {
Long intervalNanos = 10_000_000_000L; // 10s
Long baseEjectionTimeNanos = 30_000_000_000L; // 30s
Long maxEjectionTimeNanos = 30_000_000_000L; // 30s
Long maxEjectionTimeNanos = 300_000_000_000L; // 300s
Integer maxEjectionPercent = 10;
SuccessRateEjection successRateEjection;
FailurePercentageEjection failurePercentageEjection;