Skip to content

Commit

Permalink
saveThumbnail error return blanked
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya43 committed May 31, 2021
1 parent ac30edb commit 79d49b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 07-data-pipelines/04-image-processing-pipeline/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func setupPipeLine(root string) error {
if r.err != nil {
return r.err
}
saveThumbnail(r.srcImagePath, r.thumbnailImage)
_ = saveThumbnail(r.srcImagePath, r.thumbnailImage)
}

// check for error on the channel, from walkfiles stage.
Expand Down

0 comments on commit 79d49b1

Please sign in to comment.