Skip to content

Commit 03ebd0f

Browse files
committed
Fix risk score pipeline
Signed-off-by: Tushar Goel <[email protected]>
1 parent 19781e4 commit 03ebd0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vulnerabilities/pipelines/v2_improvers/compute_package_risk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def compute_and_store_package_risk_score(self):
107107
batch_size = 10000
108108

109109
for package in progress.iter(affected_packages.paginated(per_page=batch_size)):
110-
risk_score = compute_package_risk(package)
110+
risk_score = compute_package_risk_v2(package)
111111

112112
if not risk_score:
113113
continue

0 commit comments

Comments
 (0)