Merge "Increase max line length for KatiReader bufio.Scanner"

This commit is contained in:
Treehugger Robot
2019-01-31 01:46:07 +00:00
committed by Gerrit Code Review

View File

@@ -121,6 +121,7 @@ func KatiReader(st ToolStatus, pipe io.ReadCloser) {
}
scanner := bufio.NewScanner(pipe)
scanner.Buffer(nil, 2*1024*1024)
for scanner.Scan() {
parser.parseLine(scanner.Text())
}