You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
Still researching how we got here, but we have a file filled with zeros, even the header. This causes QueueFile.expandIfNecessary to never complete, it's basically adding the fileLength each time through.
I propose we add an additional check on fileLength when we read it in readHeader. If zero (and less than zero? java ints are signed, after all) it would throw an IOException, failing fast.
The text was updated successfully, but these errors were encountered:
Still researching how we got here, but we have a file filled with zeros, even the header. This causes
QueueFile.expandIfNecessary
to never complete, it's basically adding the fileLength each time through.I propose we add an additional check on fileLength when we read it in
readHeader
. If zero (and less than zero? java ints are signed, after all) it would throw an IOException, failing fast.The text was updated successfully, but these errors were encountered: