diff --git a/pkg/volume/csi/csi_mounter.go b/pkg/volume/csi/csi_mounter.go index 1ad2b0b2261..95eb198b148 100644 --- a/pkg/volume/csi/csi_mounter.go +++ b/pkg/volume/csi/csi_mounter.go @@ -475,7 +475,7 @@ func makeVolumeHandle(podUID, volSourceSpecName string) string { } func mergeMap(first, second map[string]string) map[string]string { - if first == nil && second != nil { + if first == nil { return second } for k, v := range second {