use of org.apache.distributedlog.tools.DistributedLogTool.ReadEntriesCommand in project bookkeeper by apache.
the class TestDistributedLogTool method testToolReadEntriesCommand.
@Test(timeout = 60000)
public void testToolReadEntriesCommand() throws Exception {
ReadEntriesCommand cmd = new ReadEntriesCommand();
cmd.setUri(defaultUri);
cmd.setLedgerId(99999999);
try {
cmd.runCmd();
} catch (BKNoSuchLedgerExistsException ex) {
}
}
Aggregations