swaminathanmanish commented on code in PR #11650: URL: https://github.com/apache/pinot/pull/11650#discussion_r1342198858
########## pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/creator/name/SimpleSegmentNameGenerator.java: ########## @@ -40,13 +40,14 @@ public class SimpleSegmentNameGenerator implements SegmentNameGenerator { private final String _segmentNamePrefix; private final String _segmentNamePostfix; private final boolean _appendUUIDToSegmentName; + private final boolean _omitTimestampsInSegmentName; public SimpleSegmentNameGenerator(String segmentNamePrefix, @Nullable String segmentNamePostfix) { - this(segmentNamePrefix, segmentNamePostfix, false); + this(segmentNamePrefix, segmentNamePostfix, false, false); Review Comment: Yes defaults to false, so should be good. -- 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 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