fixed error message typo for item block action

Signed-off-by: Scott Seago <sseago@redhat.com>
This commit is contained in:
Scott Seago
2024-10-15 15:20:37 -04:00
parent 34d4f18cc8
commit 6fa81ec9b9

View File

@@ -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