-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
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.