File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ type GCEControllerServer struct {
109
109
110
110
listVolumesConfig ListVolumesConfig
111
111
112
+ // Embed UnimplementedControllerServer to ensure the driver returns Unimplemented for any
113
+ // new RPC methods that might be introduced in future versions of the spec.
112
114
csi.UnimplementedControllerServer
113
115
}
114
116
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ import (
25
25
type GCEIdentityServer struct {
26
26
Driver * GCEDriver
27
27
28
+ // Embed UnimplementedIdentityServer to ensure the driver returns Unimplemented for any
29
+ // new RPC methods that might be introduced in future versions of the spec.
28
30
csi.UnimplementedIdentityServer
29
31
}
30
32
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ type GCENodeServer struct {
60
60
formatAndMountSemaphore chan any
61
61
formatAndMountTimeout time.Duration
62
62
63
+ // Embed UnimplementedNodeServer to ensure the driver returns Unimplemented for any
64
+ // new RPC methods that might be introduced in future versions of the spec.
63
65
csi.UnimplementedNodeServer
64
66
}
65
67
You can’t perform that action at this time.
0 commit comments