Disable REST default settings testing until #29229 is back-ported

That PR changed the execution path of index settings default to be on the master
until the PR is back-ported the old master will not return default settings.
This commit is contained in:
Boaz Leskes 2018-05-07 13:30:14 +02:00 committed by Colin Goodheart-Smithe
parent 8fb798ffb8
commit 245479fb49
No known key found for this signature in database
GPG Key ID: F975E7BDD739B3C7
1 changed files with 12 additions and 7 deletions

View File

@ -23,10 +23,15 @@ Test reset index settings:
indices.get_settings: indices.get_settings:
flat_settings: false flat_settings: false
- is_false: test-index.settings.index\.refresh_interval - is_false: test-index.settings.index\.refresh_interval
- do:
indices.get_settings: # Disabled until https://github.com/elastic/elasticsearch/pull/29229 is back-ported
include_defaults: true # That PR changed the execution path of index settings default to be on the master
flat_settings: true # until the PR is back-ported the old master will not return default settings.
index: test-index #
- match: # - do:
test-index.defaults.index\.refresh_interval: "1s" # indices.get_settings:
# include_defaults: true
# flat_settings: true
# index: test-index
# - match:
# test-index.defaults.index\.refresh_interval: "1s"