yashmayya commented on code in PR #17851: URL: https://github.com/apache/pinot/pull/17851#discussion_r2917979279
########## pinot-core/src/test/java/org/apache/pinot/core/util/trace/ContinuousJfrStarterTest.java: ########## @@ -18,40 +18,30 @@ */ package org.apache.pinot.core.util.trace; -import java.io.File; -import java.io.IOException; -import java.nio.file.Files; -import java.nio.file.Path; -import java.time.Instant; -import java.time.ZoneOffset; -import java.time.ZonedDateTime; +import java.lang.management.ManagementFactory; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; import java.util.Map; import java.util.Set; -import java.util.stream.Collectors; -import java.util.stream.IntStream; -import jdk.jfr.Recording; -import org.apache.commons.io.FileUtils; -import org.apache.pinot.spi.env.PinotConfiguration; +import javax.management.MBeanServer; +import javax.management.ObjectName; +import org.apache.pinot.spi.utils.DataSizeUtils; import org.assertj.core.api.Assertions; -import org.mockito.Mockito; import org.testng.annotations.BeforeMethod; +import org.testng.SkipException; Review Comment: This is causing the spotless plugin check to fail -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
