File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ export class OutlierDetectionLoadBalancer implements LoadBalancer {
467
467
// Step 3
468
468
for ( const [ address , mapEntry ] of this . addressMap . entries ( ) ) {
469
469
// Step 3.i
470
- if ( this . getCurrentEjectionPercent ( ) > this . latestConfig . getMaxEjectionPercent ( ) ) {
470
+ if ( this . getCurrentEjectionPercent ( ) >= this . latestConfig . getMaxEjectionPercent ( ) ) {
471
471
break ;
472
472
}
473
473
// Step 3.ii
@@ -515,7 +515,7 @@ export class OutlierDetectionLoadBalancer implements LoadBalancer {
515
515
// Step 2
516
516
for ( const [ address , mapEntry ] of this . addressMap . entries ( ) ) {
517
517
// Step 2.i
518
- if ( this . getCurrentEjectionPercent ( ) > this . latestConfig . getMaxEjectionPercent ( ) ) {
518
+ if ( this . getCurrentEjectionPercent ( ) >= this . latestConfig . getMaxEjectionPercent ( ) ) {
519
519
break ;
520
520
}
521
521
// Step 2.ii
You can’t perform that action at this time.
0 commit comments