mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-20 03:45:02 +00:00
Today we define a cluster wait condition to try to wait at least a certain number of nodes when running integration tests. Alas, the wait condition is incorrect because wait_for_nodes>=${numNodes} will be split by parameter parsing on the equals sign so the request looks like it has a parameter named wait_for_nodes>. The fact that REST param parsing is lenient leads to this being undiscovered. This commit fixes this issue. Relates #20601