From bb90a8bb79d4d9e23a436b6a22fa11bd6bfd3e82 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 28 Jun 2021 23:37:32 -0700 Subject: update go mod --- pkg/driver/controllerserver.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg/driver/controllerserver.go') diff --git a/pkg/driver/controllerserver.go b/pkg/driver/controllerserver.go index 3ca456c..0e07291 100644 --- a/pkg/driver/controllerserver.go +++ b/pkg/driver/controllerserver.go @@ -174,6 +174,10 @@ func (cs *ControllerServer) ControllerExpandVolume(ctx context.Context, req *csi return nil, status.Error(codes.Unimplemented, "") } +func (cs *ControllerServer) ControllerGetVolume(ctx context.Context, req *csi.ControllerGetVolumeRequest) (*csi.ControllerGetVolumeResponse, error) { + return nil, status.Error(codes.Unimplemented, "") +} + func sanitizeVolumeId(volumeId string) string { volumeId = strings.ToLower(volumeId) if len(volumeId) > 63 { -- cgit v1.2.3