~pbeaman/akiban-persistit/fix_1005206_infinite_loop

« back to all changes in this revision

Viewing changes to core/src/main/java/com/persistit/CLI.java

merge pbeaman: Fix for a tiny oops in the CLI.

https://code.launchpad.net/~pbeaman/akiban-persistit/fix_cli_open_timestamp/+merge/105982

Show diffs side-by-side

added added

removed removed

Lines of Context:
684
684
 
685
685
        String jpath = journalPath(filesOnPath(journalpath.isEmpty() ? datapath : journalpath));
686
686
        List<VolumeSpecification> volumeSpecifications = volumeSpecifications(filesOnPath(volumepath.isEmpty() ? datapath
687
 
                : volumepath), _persistit.getCurrentTimestamp());
 
687
                : volumepath), Long.MAX_VALUE);
688
688
        Set<Integer> bufferSizes = new HashSet<Integer>();
689
689
        for (final VolumeSpecification vs : volumeSpecifications) {
690
690
            bufferSizes.add(vs.getPageSize());