Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
Description
in GridFSInputFile.java, the loop creating chunks only ends when:
...
if ( start < b.length )
break;
...
But it should also check if total == file length.
Right now it does an extra loop.