mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-20 03:45:02 +00:00
In bin/elasticsearch, we grep the command line looking for various flags that indicate the process should be daemonized. To do this, we simply test command status from the grep. Sadly, this is utterly broken (unreleased) as instead we are testing the output of the command, not the command status. This commit fixes this issue. Relates #26196