Skip to content

Commit 3d5f9ad

Browse files
Copilotaegilops
andcommitted
Remove redundant 'ms' from log message
Co-authored-by: aegilops <[email protected]>
1 parent 395c925 commit 3d5f9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sbomCollector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ export class SbomCollector {
545545
if (ok) {
546546
// Delay after snapshot submission to allow GitHub to ingest and process the snapshot
547547
// before retrying the dependency review API. This helps avoid 404 errors on retry.
548-
console.log(chalk.blue(`Snapshot submission attempted; waiting ${this.opts.retryIngestionDelayMs}ms before retrying dependency review diff for ${org}/${repo} ${base}...${head}...`));
548+
console.log(chalk.blue(`Snapshot submission attempted; waiting ${this.opts.retryIngestionDelayMs / 1000} seconds before retrying dependency review diff for ${org}/${repo} ${base}...${head}...`));
549549
await new Promise(r => setTimeout(r, this.opts.retryIngestionDelayMs));
550550
return await this.fetchDependencyReviewDiff(org, repo, base, head, retries - 1, latestCommit);
551551
}

0 commit comments

Comments
 (0)