Skip to content

Commit 2017ebe

Browse files
committed
chore: add ModifyVolume function
fix golint
1 parent fbb923a commit 2017ebe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/azurefile/controllerserver.go

+5
Original file line numberDiff line numberDiff line change
@@ -1419,3 +1419,8 @@ func (d *Driver) generateSASToken(accountName, accountKey, storageEndpointSuffix
14191419
d.azcopySasTokenCache.Set(accountName, sasToken)
14201420
return sasToken, nil
14211421
}
1422+
1423+
// ControllerModifyVolume modify volume
1424+
func (d *Driver) ControllerModifyVolume(context.Context, *csi.ControllerModifyVolumeRequest) (*csi.ControllerModifyVolumeResponse, error) {
1425+
return nil, status.Error(codes.Unimplemented, "")
1426+
}

0 commit comments

Comments
 (0)