Don't lock for NodeGetVolumeStats RPC

This commit is contained in:
Jan Sušnik 2022-10-29 14:16:21 +02:00
parent 20b3fc249f
commit cfb1db599b
1 changed files with 1 additions and 1 deletions

View File

@ -87,10 +87,10 @@ function lockKeysFromRequest(call, serviceMethodName) {
case "NodeUnstageVolume":
case "NodePublishVolume":
case "NodeUnpublishVolume":
case "NodeGetVolumeStats":
case "NodeExpandVolume":
return ["volume_id_" + call.request.volume_id];
case "NodeGetVolumeStats":
default:
return [];
}