Skip to content

Commit

Permalink
Count as success in no-store mode if validation does not fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-l-teichmann committed Aug 25, 2023
1 parent 0148d18 commit 8ce9488
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/csaf_downloader/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,9 @@ nextAdvisory:

if d.cfg.NoStore {
// Do not write locally.
if valStatus == validValidationStatus {
stats.succeeded++
}
continue
}

Expand Down

0 comments on commit 8ce9488

Please sign in to comment.