Skip to content

Commit

Permalink
fix(deps): embed UnimplementServer() for all servers
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyberezansky committed Jul 28, 2024
1 parent 58945a1 commit 51a8cf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/wekafs/controllerserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const (
)

type ControllerServer struct {
csi.UnimplementedControllerServer
caps []*csi.ControllerServiceCapability
nodeID string
mounter *wekaMounter
Expand Down
1 change: 1 addition & 0 deletions pkg/wekafs/identityserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (
)

type identityServer struct {
csi.UnimplementedIdentityServer
name string
version string
config *DriverConfig
Expand Down
1 change: 1 addition & 0 deletions pkg/wekafs/nodeserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const (
)

type NodeServer struct {
csi.UnimplementedNodeServer
caps []*csi.NodeServiceCapability
nodeID string
maxVolumesPerNode int64
Expand Down

0 comments on commit 51a8cf7

Please sign in to comment.