Remove misleading comment.

This commit is contained in:
Edoardo Pirovano 2021-06-25 14:03:23 +01:00 committed by Edoardo Pirovano
parent 40852fa52a
commit 85ac9fe26e
3 changed files with 1 additions and 7 deletions

3
lib/codeql.js generated
View file

@ -592,9 +592,6 @@ exports.getExtraOptions = getExtraOptions;
* printing many log lines.
* (2) It avoids us hitting the limit of how much data we can send in our
* status reports on GitHub.com.
* This value was chosen because the maximum size of fields in the status
* report is 100kb and UTF8 characters can be up to four bytes. 5,000
* characters are left over to include other information.
*/
const maxErrorSize = 20000;
async function runTool(cmd, args = []) {

File diff suppressed because one or more lines are too long

View file

@ -901,9 +901,6 @@ export function getExtraOptions(
* printing many log lines.
* (2) It avoids us hitting the limit of how much data we can send in our
* status reports on GitHub.com.
* This value was chosen because the maximum size of fields in the status
* report is 100kb and UTF8 characters can be up to four bytes. 5,000
* characters are left over to include other information.
*/
const maxErrorSize = 20_000;