You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by anmolnar <gi...@git.apache.org> on 2018/01/08 20:15:28 UTC

[GitHub] zookeeper pull request #439: ZOOKEEPER-1621: Delete and skip txn log with in...

Github user anmolnar commented on a diff in the pull request:

    https://github.com/apache/zookeeper/pull/439#discussion_r160244289
  
    --- Diff: src/java/test/org/apache/zookeeper/test/LoadFromLogTest.java ---
    @@ -38,10 +40,16 @@
     import org.slf4j.LoggerFactory;
     
     import java.io.File;
    +import java.io.FileOutputStream;
     import java.io.IOException;
    +import java.io.RandomAccessFile;
    +import java.io.StreamCorruptedException;
    +import java.nio.channels.FileChannel;
    +import java.util.List;
     
     public class LoadFromLogTest extends ClientBase {
         private static final int NUM_MESSAGES = 300;
    +    private static final String HOST = "127.0.0.1:";
    --- End diff --
    
    It's already in the base class.


---