Merge "Send only 1 flush pkt at the end of v2 fetch"

This commit is contained in:
Jonathan Nieder 2018-07-24 18:56:42 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 0c75097830
2 changed files with 9 additions and 1 deletions

View File

@ -658,6 +658,10 @@ private ReceivedPackStatistics parsePack(ByteArrayInputStream recvStream, Progre
new StringWriter(), NullOutputStream.INSTANCE);
PackParser pp = client.newObjectInserter().newPackParser(sb);
pp.parse(NullProgressMonitor.INSTANCE);
// Ensure that there is nothing left in the stream.
assertThat(recvStream.read(), is(-1));
return pp.getReceivedPackStatistics();
}

View File

@ -1083,8 +1083,12 @@ private void fetchV2() throws IOException {
? db.getRefDatabase().getRefsByPrefix(R_TAGS)
: null,
unshallowCommits);
// sendPack invokes pckOut.end() for us, so we do not
// need to invoke it here.
} else {
// Invoke pckOut.end() by ourselves.
pckOut.end();
}
pckOut.end();
}
/*