alb3rtobr opened a new pull request #5187: URL: https://github.com/apache/geode/pull/5187
When parsing the user input in gfsh, the first `=` character position was used to split strings which were expected to follow the pattern `--parameter=value`. But if the `=` sign is not introduced, the `=` is deleted in `--parameter` and `value` (if exists). In the case of `--query` parameter, the value of the parameter (the query itself) is very likely to contain a `=`, which could be removed from the query. With this modification, if a query is introduced without the `=` between `--query` and the query statement, the `=` will not be removed from the query. I also have included the `--J` parameter in this check, because its value is always containing a `=`. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org