Skip to content

Commit

Permalink
fix: use correct error in kernel_param_spec Modify call handling
Browse files Browse the repository at this point in the history
Fixes: #4834
Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
  • Loading branch information
Unix4ever committed Jan 21, 2022
1 parent 4961d68 commit b8d4c5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (ctrl *KernelParamSpecController) Run(ctx context.Context, r controller.Run

return nil
}); e != nil {
errs = multierror.Append(errs, err)
errs = multierror.Append(errs, e)
}
} else {
errs = multierror.Append(errs, err)
Expand Down

0 comments on commit b8d4c5d

Please sign in to comment.