File tree 1 file changed +3
-4
lines changed
test/framework/src/main/java/org/elasticsearch/test
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -2424,10 +2424,9 @@ public void ensureEstimatedStats() {
2424
2424
final CircuitBreakerService breakerService = getInstanceFromNode (CircuitBreakerService .class , nodeAndClient .node );
2425
2425
CircuitBreaker fdBreaker = breakerService .getBreaker (CircuitBreaker .FIELDDATA );
2426
2426
assertThat ("Fielddata breaker not reset to 0 on node: " + name , fdBreaker .getUsed (), equalTo (0L ));
2427
- // TODO: This is commented out while Lee looks into the failures
2428
- // See: https://github.com/elastic/elasticsearch/issues/30290
2429
- // CircuitBreaker acctBreaker = breakerService.getBreaker(CircuitBreaker.ACCOUNTING);
2430
- // assertThat("Accounting breaker not reset to 0 on node: " + name, acctBreaker.getUsed(), equalTo(0L));
2427
+ CircuitBreaker acctBreaker = breakerService .getBreaker (CircuitBreaker .ACCOUNTING );
2428
+ assertThat ("Accounting breaker not reset to 0 on node: " + name + ", are there still Lucene indices around?" ,
2429
+ acctBreaker .getUsed (), equalTo (0L ));
2431
2430
// Anything that uses transport or HTTP can increase the
2432
2431
// request breaker (because they use bigarrays), because of
2433
2432
// that the breaker can sometimes be incremented from ping
You can’t perform that action at this time.
0 commit comments