Skip to content

Commit 25c300a

Browse files
authored
Unmute EsqlSpecIT for more logging (#121500)
Tracked at #121411
1 parent e7c1ee1 commit 25c300a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,6 @@ tests:
442442
- class: org.elasticsearch.xpack.security.CoreWithSecurityClientYamlTestSuiteIT
443443
method: test {yaml=cat.aliases/40_hidden/Test cat aliases output with a visible index with a hidden alias}
444444
issue: https://github.com/elastic/elasticsearch/issues/121128
445-
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
446-
issue: https://github.com/elastic/elasticsearch/issues/121411
447445

448446
# Examples:
449447
#

server/src/main/java/org/elasticsearch/index/translog/TranslogWriter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.elasticsearch.index.engine.TranslogOperationAsserter;
3030
import org.elasticsearch.index.seqno.SequenceNumbers;
3131
import org.elasticsearch.index.shard.ShardId;
32+
import org.elasticsearch.search.lookup.Source;
3233

3334
import java.io.Closeable;
3435
import java.io.IOException;
@@ -298,8 +299,10 @@ private synchronized boolean assertNoSeqNumberConflict(long seqNo, BytesReferenc
298299
+ "], with different data. "
299300
+ "prvOp ["
300301
+ prvOp
302+
+ (prvOp instanceof Translog.Index index ? " source: " + Source.fromBytes(index.source()).source() : "")
301303
+ "], newOp ["
302304
+ newOp
305+
+ (newOp instanceof Translog.Index index ? " source: " + Source.fromBytes(index.source()).source() : "")
303306
+ "]",
304307
previous.v2()
305308
);

0 commit comments

Comments
 (0)