Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,6 @@ tests:
- class: org.elasticsearch.index.store.AsyncDirectIODirectoryTests
method: testIsLoadedOnSlice
issue: https://github.com/elastic/elasticsearch/issues/136331
- class: org.elasticsearch.cluster.coordination.NodeJoiningIT
method: testNodeTriesToJoinClusterAndThenSameMasterIsElected
issue: https://github.com/elastic/elasticsearch/issues/136332
- class: org.elasticsearch.index.store.AsyncDirectIODirectoryTests
method: testSeekPastEOFAndRead
issue: https://github.com/elastic/elasticsearch/issues/136351
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.elasticsearch.test.ClusterServiceUtils;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.test.MockLog;
import org.elasticsearch.test.junit.annotations.TestIssueLogging;
import org.elasticsearch.test.junit.annotations.TestLogging;
import org.elasticsearch.test.transport.MockTransportService;
import org.elasticsearch.transport.Transport;
Expand Down Expand Up @@ -133,6 +134,10 @@ public void testNodeTriesToJoinClusterAndThenDifferentMasterIsElected() {
Node N should join the cluster, but it should not be disconnected (#ES-11449)
*/
@TestLogging(reason = "test includes assertions about logging", value = "org.elasticsearch.cluster.coordination:INFO")
@TestIssueLogging(
value = "org.elasticsearch.cluster.coordination.NodeJoiningIT:DEBUG",
issueUrl = "https://github.com/elastic/elasticsearch/issues/136332"
)
public void testNodeTriesToJoinClusterAndThenSameMasterIsElected() {
internalCluster().startNodes(3);
ensureStableCluster(3);
Expand Down