@andrewgaul Use parseLong instead of parseInt when parsing open-ended byte ranges in LocalBlobStore. Without this fix, any "from byte x to end" or "from beginning to byte x" getBlob() call will throw a NumberFormatException if x is too big to fit into an int (2 GB).
Fixes https://issues.apache.org/jira/browse/JCLOUDS-1073 You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds/pull/910 -- Commit Summary -- * Use parseLong instead of parseInt in range parser -- File Changes -- M blobstore/src/main/java/org/jclouds/blobstore/config/LocalBlobStore.java (4) -- Patch Links -- https://github.com/jclouds/jclouds/pull/910.patch https://github.com/jclouds/jclouds/pull/910.diff --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/910
