Add the --threads config option to finalize db (#281)

This flag is already being used for `runQueries`, so let's use it for
finalize as well.
This commit is contained in:
Andrew Eisenberg 2020-11-03 08:25:40 -08:00 committed by GitHub
parent a6c99e6b5b
commit bc1ee1620f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 10 deletions

3
lib/codeql.js generated
View file

@ -363,10 +363,11 @@ function getCodeQLForCmd(cmd) {
traceCommand,
], error_matcher_1.errorMatchers);
},
async finalizeDatabase(databasePath) {
async finalizeDatabase(databasePath, threadsFlag) {
await toolrunner_error_catcher_1.toolrunnerErrorCatcher(cmd, [
"database",
"finalize",
threadsFlag,
...getExtraOptionsFromEnv(["database", "finalize"]),
databasePath,
], error_matcher_1.errorMatchers);