1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 380020 - Increased batch size.

This commit is contained in:
Sergey Prigogin 2012-05-25 11:11:19 -07:00
parent 9e52a24ce4
commit 7381c59620

View file

@ -413,7 +413,7 @@ public class BuildConsolePartitioner
// entry in the queue. The batch size is adaptive and grows with the length of
// the queue.
if (entry.getStream() == stream && entry.getEventType() == StreamEntry.EVENT_APPEND &&
entry.getMarker() == marker && entry.size() < 1000 * fQueue.size()) {
entry.getMarker() == marker && entry.size() < 2000 * fQueue.size()) {
entry.appendText(text);
addToQueue = false;
}