mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 11:50:18 +00:00
Implement NodeGetInfo for csi spec 3.0
This commit is contained in:
parent
4331960ab3
commit
c93466b009
@ -212,3 +212,11 @@ func (ns *nodeServer) NodeUnstageVolume(
|
||||
*csi.NodeUnstageVolumeResponse, error) {
|
||||
return nil, status.Error(codes.Unimplemented, "")
|
||||
}
|
||||
|
||||
func (ns *nodeServer) NodeGetInfo(
|
||||
ctx context.Context,
|
||||
req *csi.NodeGetInfoRequest) (
|
||||
*csi.NodeGetInfoResponse, error) {
|
||||
|
||||
return nil, status.Error(codes.Unimplemented, "")
|
||||
}
|
||||
|
@ -146,3 +146,11 @@ func (ns *nodeServer) NodeUnstageVolume(
|
||||
|
||||
return nil, status.Error(codes.Unimplemented, "")
|
||||
}
|
||||
|
||||
func (ns *nodeServer) NodeGetInfo(
|
||||
ctx context.Context,
|
||||
req *csi.NodeGetInfoRequest) (
|
||||
*csi.NodeGetInfoResponse, error) {
|
||||
|
||||
return nil, status.Error(codes.Unimplemented, "")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user