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:
parent
9e52a24ce4
commit
7381c59620
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ public class BuildConsolePartitioner
|
||||||
// entry in the queue. The batch size is adaptive and grows with the length of
|
// entry in the queue. The batch size is adaptive and grows with the length of
|
||||||
// the queue.
|
// the queue.
|
||||||
if (entry.getStream() == stream && entry.getEventType() == StreamEntry.EVENT_APPEND &&
|
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);
|
entry.appendText(text);
|
||||||
addToQueue = false;
|
addToQueue = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue