summaryrefslogtreecommitdiff
path: root/core/src/test/java/org/elasticsearch/node/NodeTests.java
AgeCommit message (Collapse)Author
2017-06-26Remove default path settingsJason Tedor
This commit removes the default path settings for data and logs. With this change, we now ship the packages with these settings set in the elasticsearch.yml configuration file rather than going through the default.path.data and default.path.logs dance that we went through in the past. Relates #25408
2017-06-20Tests: Refactor NodeTests settings (#25309)Guillaume Le Floch
This pull request aims to use the method baseSettings already present in the class.
2017-04-24Check for default.path.data included in path.dataJason Tedor
If the user explicitly configured path.data to include default.path.data, then we should not fail the node if we find indices in default.path.data. This commit addresses this. Relates #24285