mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-20 15:04:17 +00:00
RIAv2 async operations controller work
Signed-off-by: Scott Seago <sseago@redhat.com>
This commit is contained in:
@@ -199,3 +199,9 @@ func (c *RestoreItemActionGRPCClient) AreAdditionalItemsReady(additionalItems []
|
||||
|
||||
return res.Ready, nil
|
||||
}
|
||||
|
||||
// This shouldn't be called on the GRPC client since the RestartableRestoreItemAction won't delegate
|
||||
// this method
|
||||
func (c *RestoreItemActionGRPCClient) Name() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
@@ -263,3 +263,9 @@ func restoreResourceIdentifierToProto(id velero.ResourceIdentifier) *proto.Resou
|
||||
Name: id.Name,
|
||||
}
|
||||
}
|
||||
|
||||
// This shouldn't be called on the GRPC server since the server won't ever receive this request, as
|
||||
// the RestartableRestoreItemAction in Velero won't delegate this to the server
|
||||
func (c *RestoreItemActionGRPCServer) Name() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user