We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e39f14d commit c9203e7Copy full SHA for c9203e7
docs/changelog/124918.yaml
@@ -0,0 +1,5 @@
1
+pr: 124918
2
+summary: Fix EQL double invoking listener
3
+area: EQL
4
+type: bug
5
+issues: []
x-pack/plugin/eql/src/main/java/org/elasticsearch/xpack/eql/execution/sequence/TumblingWindow.java
@@ -171,6 +171,7 @@ public void execute(ActionListener<Payload> listener) {
171
private void tumbleWindow(int currentStage, ActionListener<Payload> listener) {
172
if (allowPartialSequenceResults == false && shardFailures.isEmpty() == false) {
173
doPayload(listener);
174
+ return;
175
}
176
if (currentStage > matcher.firstPositiveStage && matcher.hasCandidates() == false) {
177
if (restartWindowFromTailQuery) {
0 commit comments