Merge pull request #245 from jodlajodla/next-nodegetvolumestats

Don't globally lock volume in NodeGetVolumeStats RPC
This commit is contained in:
Travis Glenn Hansen 2022-10-29 09:19:26 -06:00 committed by GitHub
commit 1d38147599
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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