cuishuang opened a new pull request, #23371:
URL: https://github.com/apache/kafka/pull/23371
ClientMetricsConfigs.parseMatchingPatterns currently splits client match
patterns on every '=' character. As a result, a valid pattern such as
client_id=foo=bar is rejected because it produces more than two parts.
The method Javadoc specifies that the input should be split at the first
occurrence of '='. This change uses split("=", 2), preserving additional equals
signs in the regular expression.
--
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]