HADOOP-13798. TestHadoopArchives times out.
This commit is contained in:
parent
ca33bdd5c6
commit
b970446b2c
@ -444,7 +444,7 @@ private static byte[] readAllWithBuffer(FSDataInputStream fsdis, boolean close)
|
||||
int read;
|
||||
while (true) {
|
||||
read = fsdis.read(buffer, readIntoBuffer, buffer.length - readIntoBuffer);
|
||||
if (read < 0) {
|
||||
if (read <= 0) {
|
||||
// end of stream:
|
||||
if (readIntoBuffer > 0) {
|
||||
baos.write(buffer, 0, readIntoBuffer);
|
||||
|
Loading…
Reference in New Issue
Block a user