You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pinot.apache.org by GitBox <gi...@apache.org> on 2019/01/23 02:19:42 UTC

[GitHub] Jackie-Jiang opened a new pull request #3733: Minor fix for star-tree v2 metadata

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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pinot.apache.org
For additional commands, e-mail: dev-help@pinot.apache.org