Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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 @@ -660,9 +660,6 @@ tests:
- class: org.elasticsearch.xpack.restart.FullClusterRestartIT
method: testRollupAfterRestart {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/136437
- class: org.elasticsearch.cluster.coordination.NodeJoiningIT
method: testNodeTriesToJoinClusterAndThenSameMasterIsElected
issue: https://github.com/elastic/elasticsearch/issues/136332
- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT
method: test {p0=search.vectors/200_dense_vector_docvalue_fields/Enable docvalue_fields parameter for dense_vector fields}
issue: https://github.com/elastic/elasticsearch/issues/136443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,11 @@ public void testNodeTriesToJoinClusterAndThenDifferentMasterIsElected() {
In this scenario, node N attempts to join a cluster, there is an election and the original master is re-elected.
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",
value = "org.elasticsearch.cluster.coordination.NodeJoiningIT:DEBUG,"
+ "org.elasticsearch.cluster.coordination.Coordinator:DEBUG,"
+ "org.elasticsearch.cluster.service.MasterService:DEBUG,"
+ "org.elasticsearch.cluster.coordination.NodeJoinExecutor:DEBUG",
issueUrl = "https://github.com/elastic/elasticsearch/issues/136332"
)
public void testNodeTriesToJoinClusterAndThenSameMasterIsElected() {
Expand Down