Skip to content

Commit 20e06b7

Browse files
committed
chore: add ModifyVolume function
1 parent cfe4ac3 commit 20e06b7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/blob/controllerserver.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,11 @@ func (d *Driver) ValidateVolumeCapabilities(ctx context.Context, req *csi.Valida
590590
}, nil
591591
}
592592

593+
// ControllerModifyVolume modify volume
594+
func (d *Driver) ControllerModifyVolume(_ context.Context, _ *csi.ControllerModifyVolumeRequest) (*csi.ControllerModifyVolumeResponse, error) {
595+
return nil, status.Error(codes.Unimplemented, "")
596+
}
597+
593598
func (d *Driver) ControllerPublishVolume(_ context.Context, _ *csi.ControllerPublishVolumeRequest) (*csi.ControllerPublishVolumeResponse, error) {
594599
return nil, status.Error(codes.Unimplemented, "ControllerPublishVolume is not yet implemented")
595600
}

0 commit comments

Comments
 (0)