From 6fa81ec9b93f2b373064bb1b2c17917beba2af7b Mon Sep 17 00:00:00 2001 From: Scott Seago Date: Tue, 15 Oct 2024 15:20:37 -0400 Subject: [PATCH] fixed error message typo for item block action Signed-off-by: Scott Seago --- .../framework/itemblockaction/v1/item_block_action_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go b/pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go index 17ece020d..ab9ad7485 100644 --- a/pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go +++ b/pkg/plugin/framework/itemblockaction/v1/item_block_action_server.go @@ -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