brbzull0 opened a new pull request, #13570: URL: https://github.com/apache/trafficserver/pull/13570
ArgParser options taking a variable number of values collected every remaining token, so an option written after one was swallowed and never parsed: `config reload -D ip_allow.id=foo -t mytok` lost the token, while the reverse order worked. Collection now stops at a token naming another declared option of the same command, and `--` ends option recognition so a dash-prefixed value stays expressible. Also, `--option=value` took the name up to the first `=` but the value from the last, so `--directive=ip_allow.id=foo` arrived as `foo`. The second commit drops the `-D`-must-be-last workaround in traffic_ctl, makes an empty `-D`/`-d` an error rather than a silent full reload, and corrects the docs. Fixes: #13569 -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
