Details
-
Bug
-
Status: Done
-
Major
-
Resolution: Done
-
None
-
None
Description
Currently the tooltip for the ES mpack path_data is incorrect. It says:
'Comma-separated list of directories where to store index data allocated for each node: "/mnt/first","/mnt/second".'
This is incorrect, as the way the elasticsearch.yml gets updated results in invalid yaml. Specifically:
```
path:
data: "/mnt/first","/mnt/second"
```
Two valid yaml options are either of the following (I'm excluding any multiline solutions here):
```
path:
data:"/mnt/first","/mnt/second"
```
or
```
path:
data: [ "/mnt/first", "/mnt/second" ]
```
We can either remove the space after `data:` or use the [ ] notation. Since we use the [ ] notation elsewhere, I suggest we move in that direction with the tooltip.
Attachments
Issue Links
- links to