timveil opened a new issue, #12136: URL: https://github.com/apache/pinot/issues/12136
found a number of instances where calls to `String.format` are malformed. For example, this... ```java throw new IllegalArgumentException(String.format("Plugins dir [{}] doesn't exist.", pluginsDirectory)); ``` should really be this... ```java throw new IllegalArgumentException(String.format("Plugins dir [%s] doesn't exist.", pluginsDirectory)); ``` -- 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: commits-unsubscr...@pinot.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org