Skip to content

Commit

Permalink
Merge pull request #68 from saveweb/fix-verify-unclosed-tmpfile
Browse files Browse the repository at this point in the history
Fix: close record content after verified
  • Loading branch information
CorentinB authored Jan 30, 2025
2 parents 9eede8f + b2775e0 commit 0602ab2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ func verify(cmd *cobra.Command, files []string) {
defer processWg.Done()
for record := range recordChan {
processVerifyRecord(record, filepath, results)
record.Content.Close()
}
}()
}
Expand Down

0 comments on commit 0602ab2

Please sign in to comment.