From c68c19f3cf87247753e3493da9299186f06c4be9 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Mon, 20 Apr 2020 17:13:46 -0400 Subject: [PATCH] Use ExternalID in NodeStageVolume RPC (#7754) --- client/pluginmanager/csimanager/volume.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pluginmanager/csimanager/volume.go b/client/pluginmanager/csimanager/volume.go index 10c39fa8d..3012b5362 100644 --- a/client/pluginmanager/csimanager/volume.go +++ b/client/pluginmanager/csimanager/volume.go @@ -166,7 +166,7 @@ func (v *volumeManager) stageVolume(ctx context.Context, vol *structs.CSIVolume, // CSI NodeStageVolume errors for timeout, codes.Unavailable and // codes.ResourceExhausted are retried; all other errors are fatal. return v.plugin.NodeStageVolume(ctx, - vol.ID, + vol.RemoteID(), publishContext, pluginStagingPath, capability,