aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Forbes <chrisforbes@google.com>2018-03-30 07:15:21 -0700
committerChris Forbes <chrisforbes@google.com>2018-03-30 07:15:21 -0700
commit2bad5a4d3b8a4ea661e7169f0ba231427bd79323 (patch)
treea891e8efa13c097797381d47da4aa1a49be6fb67
parent72d5d49445dc4187049f2af8b5143157538cad37 (diff)
downloadcherry-2bad5a4d3b8a4ea661e7169f0ba231427bd79323.tar.gz
Increase scanner buffer size further
-rw-r--r--cherry/testrunner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherry/testrunner.go b/cherry/testrunner.go
index f7a7ccd..9fa3fa1 100644
--- a/cherry/testrunner.go
+++ b/cherry/testrunner.go
@@ -844,7 +844,7 @@ func (runner *TestRunner) ImportBatch (batchResultDefaultName string, qpaReader
qpaParser := CreateLogContainerParser(qpaParserQueue)
countingQpaReader := NewCountingReader(qpaReader)
scanner := bufio.NewScanner(countingQpaReader)
- scanner.Buffer(nil, 256*1024)
+ scanner.Buffer(nil, 512*1024)
// Initialize batch result and root group. Add to batch result list.
{