You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit fixes the intermittent failure of
BreakingBytesRefBuilderTests. The issue is that the test uses the
BreakingBytesRefBuilder's internal BytesRef array length to determine
whether to expect a circuit breaker exception or not. Where it should
use the builders length (not the capacity, a.k.a the internal BytesRef
array length).
The test failed intermittently about one in 10-20 runs before the
change. The test passes successfully 100s of thousands of times with the
fix.
closes#99649
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/BreakingBytesRefBuilderTests.java
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,6 @@ public void applyToOracle(BytesRefBuilder oracle) {
0 commit comments