3-Round-Stones / callimachus

Callimachus is a highly scalable platform for creating and running data-driven websites
Other
95 stars 24 forks source link

Fix #257 Graph Store Fails to Upload Files > 1024 bytes #258

Closed catch-point closed 8 years ago

catch-point commented 8 years ago

The BufferedInputStream#skip(n) implementation would return after skipping less than n bytes if there were less than n bytes available, which can happen due to network latency. This PR replaces that usage with an implementation that keeps buffering input until n bytes are skipped, even if that blocks the thread.