Tagged mode uses bufio.Scanner to split an instance's output into lines. bufio.Scanner errors out when a token is longer than 64MB, which causes parunner to fail.
We should instead either:
- fail with a better error message, or
- do not fail, warn about the problem and discard the rest of output.
Tagged mode uses
bufio.Scannerto split an instance's output into lines.bufio.Scannererrors out when a token is longer than 64MB, which causes parunner to fail.We should instead either: