Skip to content

Commit

Permalink
add error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Vlasic committed Jul 23, 2021
1 parent 123cab4 commit 9819187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (a *AWS) UpdateLambdaFunctionCodeImage(function, image string) error {

_, err := a.lambdaClient.UpdateFunctionCode(context.TODO(), ufci)
if err != nil {
return fmt.Errorf("could not update lambda function %s with image %s", function, image)
return fmt.Errorf("could not update lambda function %s with image %s - %v", function, image, err)
}
return nil
}
Expand Down

0 comments on commit 9819187

Please sign in to comment.