Skip to content

Commit

Permalink
Default bom.processing.task.v2.enabled to false
Browse files Browse the repository at this point in the history
Received insufficient user feedback so far, so for 4.11 users will need to manually enable this.

Signed-off-by: nscuro <[email protected]>
  • Loading branch information
nscuro committed Jan 28, 2024
1 parent e2a098f commit 7e21023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/dependencytrack/common/ConfigKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public enum ConfigKey implements Config.Key {
REPO_META_ANALYZER_CACHE_STAMPEDE_BLOCKER_LOCK_BUCKETS("repo.meta.analyzer.cacheStampedeBlocker.lock.buckets", 1000),
REPO_META_ANALYZER_CACHE_STAMPEDE_BLOCKER_MAX_ATTEMPTS("repo.meta.analyzer.cacheStampedeBlocker.max.attempts", 10),
SYSTEM_REQUIREMENT_CHECK_ENABLED("system.requirement.check.enabled", true),
BOM_PROCESSING_TASK_V2_ENABLED("bom.processing.task.v2.enabled", true);
BOM_PROCESSING_TASK_V2_ENABLED("bom.processing.task.v2.enabled", false);

private final String propertyName;
private final Object defaultValue;
Expand Down

0 comments on commit 7e21023

Please sign in to comment.