Skip to content

Commit

Permalink
Deprioritize log injection (#487)
Browse files Browse the repository at this point in the history
This way, it runs "after" other codemods, and higher priority fixes will
be merged first, in a conflict.
  • Loading branch information
nahsra authored Dec 19, 2024
1 parent b841ee3 commit bb3eced
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
id = "codeql:java/log-injection",
reviewGuidance = ReviewGuidance.MERGE_WITHOUT_REVIEW,
importance = Importance.HIGH,
executionPriority = CodemodExecutionPriority.HIGH)
executionPriority = CodemodExecutionPriority.LOW)
public final class CodeQLLogInjectionCodemod extends CodeQLRemediationCodemod {

private final Remediator<Result> remediator;
Expand Down

0 comments on commit bb3eced

Please sign in to comment.