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
Copy file name to clipboardExpand all lines: src/cli.ts
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,8 @@ async function main() {
51
51
.option("submit-languages",{type: "array",describe: "Limit snapshot submission to these languages (e.g., JavaScript,TypeScript,Python,Maven)."})
52
52
.option("component-detection-bin",{type: "string",describe: "Path to a local component-detection executable to use for snapshot submission (skips download)."})
53
53
.option("force-submission",{type: "boolean",default: false,describe: "Always run Dependency Submission for scanned branches before fetching diffs."})
54
+
.option("snapshot-ingestion-delay",{type: "number",default: 1500,describe: "Delay (ms) after snapshot submission to allow ingestion before dependency review (default: 1500ms)"})
55
+
.option("retry-ingestion-delay",{type: "number",default: 3000,describe: "Delay (ms) after snapshot submission before retrying dependency review on 404 (default: 3000ms)"})
0 commit comments