You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is sub-optimal as it prevents policy evaluation from being kicked off independently. It also blocks a single worker thread for longer than necessary (although policy evaluation is typically quite fast).
Proposed Behavior
Policy evaluation should have its own dedicated event and task. When chaining of events is desired, the onSuccess method of Event may be used, e.g.:
Current Behavior
Policy evaluation is currently performed as a byproduct of vulnerability analysis.
dependency-track/src/main/java/org/dependencytrack/tasks/VulnerabilityAnalysisTask.java
Lines 133 to 140 in 7cfc466
This is sub-optimal as it prevents policy evaluation from being kicked off independently. It also blocks a single worker thread for longer than necessary (although policy evaluation is typically quite fast).
Proposed Behavior
Policy evaluation should have its own dedicated event and task. When chaining of events is desired, the
onSuccess
method ofEvent
may be used, e.g.:Checklist
The text was updated successfully, but these errors were encountered: