Skip to content
Merged
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
4 changes: 1 addition & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,4 @@ tests:
- class: org.elasticsearch.analysis.common.CommonAnalysisClientYamlTestSuiteIT
method: test {yaml=analysis-common/40_token_filters/stemmer_override file access}
issue: https://github.com/elastic/elasticsearch/issues/121625
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
method: test {p0=snapshot/10_basic/Failed to snapshot indices with synthetic source}
issue: https://github.com/elastic/elasticsearch/issues/120332

Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ setup:
snapshot: test_snapshot_2
wait_for_completion: true
body: |
{ "indices": "test_synthetic" }
{
"indices": "test_synthetic",
"include_global_state": false
}

- match: { snapshot.snapshot: test_snapshot_2 }
- match: { snapshot.state : PARTIAL }
Expand All @@ -132,7 +135,10 @@ setup:
snapshot: test_snapshot_3
wait_for_completion: true
body: |
{ "indices": "test_*" }
{
"indices": "test_*",
"include_global_state": false
}

- match: { snapshot.snapshot: test_snapshot_3 }
- match: { snapshot.state : PARTIAL }
Expand Down