We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c297f1 commit 34b7bf5Copy full SHA for 34b7bf5
x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/LocalCircuitBreaker.java
@@ -162,9 +162,6 @@ private boolean assertSingleThread() {
162
*/
163
public boolean assertBeginRunLoop() {
164
activeThread = Thread.currentThread();
165
- if (breaker instanceof LocalCircuitBreaker local) {
166
- local.assertBeginRunLoop();
167
- }
168
return true;
169
}
170
@@ -174,9 +171,6 @@ public boolean assertBeginRunLoop() {
174
171
175
172
public boolean assertEndRunLoop() {
176
173
activeThread = null;
177
178
- local.assertEndRunLoop();
179
180
181
182
0 commit comments