Run Translog retention yaml tests with no replicas
Initializing replicas change the translog retention logic and confuses the test. Switch to the solution suggested in https://github.com/elastic/elasticsearch/issues/25623, if implemented
This commit is contained in:
parent
a932591007
commit
a6db0ea908
|
@ -3,6 +3,12 @@ setup:
|
|||
- do:
|
||||
indices.create:
|
||||
index: test
|
||||
body:
|
||||
settings:
|
||||
index:
|
||||
# initializing replicas maintain the translog causing the test to fail.
|
||||
# remove once https://github.com/elastic/elasticsearch/issues/25623 is fixed.
|
||||
number_of_replicas: 0
|
||||
|
||||
---
|
||||
"Translog retention":
|
||||
|
|
Loading…
Reference in New Issue