Skip to content

Commit

Permalink
Merge pull request #487 from shubham14bajpai/err
Browse files Browse the repository at this point in the history
Fix missing error handling
  • Loading branch information
jacobweinstock authored Jun 29, 2021
2 parents 60a74c7 + 5ba9234 commit 1a02f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tink-worker/internal/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ func (w *Worker) ProcessWorkflowActions(ctx context.Context, workerID string, ca
os.Exit(1)
}

f.Close()
err = f.Close()
if err != nil {
l.Error(err)
os.Exit(1)
Expand Down

0 comments on commit 1a02f92

Please sign in to comment.