Skip to content
Snippets Groups Projects
Commit cfab1a35 authored by Imran Rashid's avatar Imran Rashid
Browse files

add as many fetch requests as we can, subject to maxBytesInFlight

parent f6ec547e
No related branches found
No related tags found
No related merge requests found
......@@ -585,7 +585,7 @@ class BlockManager(
resultsGotten += 1
val result = results.take()
bytesInFlight -= result.size
if (!fetchRequests.isEmpty &&
while (!fetchRequests.isEmpty &&
(bytesInFlight == 0 || bytesInFlight + fetchRequests.front.size <= maxBytesInFlight)) {
sendRequest(fetchRequests.dequeue())
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment