From 728a7f5ac796e5a83f9507922ebbfb555c13fb44 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Wed, 14 Feb 2024 14:02:31 +0100 Subject: [PATCH] util: add UnimplementedGroupControllerServer adding UnimplementedGroupControllerServer to the DefaultControllerServer struct to avoid build errors when some non mandatory RPC's are not implemented. Signed-off-by: Madhu Rajanna --- internal/csi-common/controllerserver-default.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/csi-common/controllerserver-default.go b/internal/csi-common/controllerserver-default.go index 2ce290928..114638056 100644 --- a/internal/csi-common/controllerserver-default.go +++ b/internal/csi-common/controllerserver-default.go @@ -29,6 +29,7 @@ import ( // DefaultControllerServer points to default driver. type DefaultControllerServer struct { csi.UnimplementedControllerServer + csi.UnimplementedGroupControllerServer Driver *CSIDriver }