Skip to content

Commit 1bae7c2

Browse files
authored
Fix generation-complete notices. (#163)
Due to a typo in PR #162, the verifier no longer shows generation-complete notices. This changeset fixes that typo.
1 parent 8c5ad8b commit 1bae7c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/verifier/check.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (verifier *Verifier) CheckWorker(ctxIn context.Context) error {
163163
canceler(errors.Errorf("generation %d finished", generation))
164164
<-inProgressDone
165165

166-
verifier.PrintVerificationSummary(ctx, GenerationComplete)
166+
verifier.PrintVerificationSummary(ctxIn, GenerationComplete)
167167

168168
return nil
169169
}

0 commit comments

Comments
 (0)