jiazhai commented on a change in pull request #1389: Add smoke tests for LedgerHandleAdv and TailingReads URL: https://github.com/apache/bookkeeper/pull/1389#discussion_r185995795
########## File path: tests/integration/smoke/src/test/java/org/apache/bookkeeper/tests/integration/TestSmoke.java ########## @@ -17,29 +17,36 @@ */ package org.apache.bookkeeper.tests.integration; -import com.github.dockerjava.api.DockerClient; +import static java.nio.charset.StandardCharsets.UTF_8; +import static org.apache.bookkeeper.common.concurrent.FutureUtils.result; +import static org.junit.Assert.assertEquals; +import com.github.dockerjava.api.DockerClient; +import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.Enumeration; - +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; +import lombok.Cleanup; +import lombok.extern.slf4j.Slf4j; import org.apache.bookkeeper.client.BookKeeper; +import org.apache.bookkeeper.client.BookKeeper.DigestType; import org.apache.bookkeeper.client.LedgerEntry; import org.apache.bookkeeper.client.LedgerHandle; +import org.apache.bookkeeper.common.concurrent.FutureUtils; import org.apache.bookkeeper.tests.BookKeeperClusterUtils; - import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; - +import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - +@Slf4j Review comment: 👍 we may need another chance to do a cleanup with Lombok. ---------------------------------------------------------------- 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
