Jackie-Jiang opened a new pull request #3733: Minor fix for star-tree v2 metadata URL: https://github.com/apache/incubator-pinot/pull/3733 Use setProperty() instead of addProperty() for sub-config. Calling addProperty() for sub-config will cause list of properties written in multiple lines. Changing it to setProperty() can wrap the list into one single line, thus enhance readability. Also, it can prevent writing the same property multiple times. E.g. Result after addProperty("a", [1, 2]): a = 1 a = 2 Result after setProperty("a", [1, 2]): a = 1,2
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
