Merge pull request #8305 from sseago/iba-typo

fixed error message typo for item block action
This commit is contained in:
lyndon-li
2024-10-16 10:04:01 +08:00
committed by GitHub

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