Skip to content

Commit

Permalink
fixed error message typo for item block action
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Seago <sseago@redhat.com>
  • Loading branch information
sseago committed Oct 15, 2024
1 parent 34d4f18 commit 6fa81ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (s *ItemBlockActionGRPCServer) getImpl(name string) (ibav1.ItemBlockAction,

itemAction, ok := impl.(ibav1.ItemBlockAction)
if !ok {
return nil, errors.Errorf("%T is not a backup item action", impl)
return nil, errors.Errorf("%T is not an ItemBlock action", impl)
}

return itemAction, nil
Expand Down

0 comments on commit 6fa81ec

Please sign in to comment.