Skip to content

Commit fc74a99

Browse files
Merge branch 'main' into es-134088-fix
2 parents 921d7dc + d113355 commit fc74a99

File tree

20 files changed

+134
-53
lines changed

20 files changed

+134
-53
lines changed

docs/changelog/134198.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 134198
2+
summary: Improve `ShardLockObtainFailedException` message
3+
area: Store
4+
type: enhancement
5+
issues: []

muted-tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -513,12 +513,6 @@ tests:
513513
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
514514
method: test {csv-spec:spatial.ConvertFromStringParseError}
515515
issue: https://github.com/elastic/elasticsearch/issues/134104
516-
- class: org.elasticsearch.xpack.writeloadforecaster.WriteLoadForecasterIT
517-
method: testWriteLoadForecastIsOverriddenBySetting
518-
issue: https://github.com/elastic/elasticsearch/issues/133455
519-
- class: org.elasticsearch.xpack.writeloadforecaster.WriteLoadForecasterIT
520-
method: testWriteLoadForecastDoesNotGetPopulatedWithInvalidLicense
521-
issue: https://github.com/elastic/elasticsearch/issues/134124
522516
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
523517
method: test {csv-spec:fork.ForkWithMixOfCommands}
524518
issue: https://github.com/elastic/elasticsearch/issues/134135
@@ -528,6 +522,9 @@ tests:
528522
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
529523
method: test {p0=search/510_range_query_out_of_bounds/Test range query for float field with out of bounds lower limit}
530524
issue: https://github.com/elastic/elasticsearch/issues/134184
525+
- class: org.elasticsearch.health.HealthPeriodicLoggerTests
526+
method: testOutputModeNoLogging
527+
issue: https://github.com/elastic/elasticsearch/issues/134200
531528

532529
# Examples:
533530
#

rest-api-spec/src/main/resources/rest-api-spec/api/indices.cancel_migrate_reindex.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"url":"https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-cancel-migrate-reindex",
55
"description":"Cancel a migration reindex operation"
66
},
7-
"stability":"experimental",
8-
"visibility":"private",
7+
"stability":"stable",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"],
1111
"content_type": ["application/json"]

rest-api-spec/src/main/resources/rest-api-spec/api/indices.create_from.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"url":"https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-create-from",
55
"description":"Create an index from a source index"
66
},
7-
"stability":"experimental",
8-
"visibility":"private",
7+
"stability":"stable",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"],
1111
"content_type": ["application/json"]

rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_migrate_reindex_status.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"url":"https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-migration",
55
"description":"Get the migration reindexing status"
66
},
7-
"stability":"experimental",
8-
"visibility":"private",
7+
"stability":"stable",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"],
1111
"content_type": ["application/json"]

rest-api-spec/src/main/resources/rest-api-spec/api/indices.migrate_reindex.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"url":"https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-migrate-reindex",
55
"description":"Reindex legacy backing indices"
66
},
7-
"stability":"experimental",
8-
"visibility":"private",
7+
"stability":"stable",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"],
1111
"content_type": ["application/json"]

rest-api-spec/src/main/resources/rest-api-spec/api/query_rules.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"url": "https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-query-rules-test",
55
"description": "Test a query ruleset"
66
},
7-
"stability": "experimental",
7+
"stability": "stable",
88
"visibility": "public",
99
"headers": {
1010
"accept": [

rest-api-spec/src/main/resources/rest-api-spec/api/security.activate_user_profile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description":"Activate a user profile"
66
},
77
"stability":"stable",
8-
"visibility":"private",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"],
1111
"content_type": ["application/json"]

rest-api-spec/src/main/resources/rest-api-spec/api/security.disable_user_profile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description":"Disable a user profile"
66
},
77
"stability":"stable",
8-
"visibility":"private",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"]
1111
},

rest-api-spec/src/main/resources/rest-api-spec/api/security.enable_user_profile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description":"Enable a user profile"
66
},
77
"stability":"stable",
8-
"visibility":"private",
8+
"visibility":"public",
99
"headers":{
1010
"accept": [ "application/json"]
1111
},

0 commit comments

Comments
 (0)