Skip to content

Commit 724d643

Browse files
committed
Bump min. version for evaluator parallelism feature flag
Since we suspect fine-grained parallelism may make the OOM issues worse, we don't want to enable it on 2.14.0-2.14.5, even though they support it.
1 parent 49aaa9a commit 724d643

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

lib/feature-flags.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/feature-flags.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ export const CODEQL_VERSION_BUNDLE_SEMANTICALLY_VERSIONED = "2.13.4";
2424
export const CODEQL_VERSION_ANALYSIS_SUMMARY_V2 = "2.14.0";
2525

2626
/**
27-
* Versions 2.14.0+ of the CodeQL CLI support intra-layer parallelism (aka fine-grained parallelism) options.
27+
* Versions 2.14.0+ of the CodeQL CLI support intra-layer parallelism (aka fine-grained parallelism) options, but we
28+
* limit to 2.14.6 onwards, since that's the version that has mitigations against OOM failures.
2829
*/
29-
export const CODEQL_VERSION_INTRA_LAYER_PARALLELISM = "2.14.0";
30+
export const CODEQL_VERSION_INTRA_LAYER_PARALLELISM = "2.14.6";
3031

3132
export interface CodeQLDefaultVersionInfo {
3233
cliVersion: string;

0 commit comments

Comments
 (0)