Skip to content

Commit dffdbfe

Browse files
committed
fix: conflict inline volume mount options with default
1 parent 0e7b74f commit dffdbfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/blob/nodeserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func (d *Driver) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRe
269269
// Get mountOptions that the volume will be formatted and mounted with
270270
mountOptions := util.JoinMountOptions(mountFlags, []string{"--use-https=true"})
271271
if ephemeralVol {
272-
mountOptions = util.JoinMountOptions(mountOptions, []string{ephemeralVolMountOptions})
272+
mountOptions = util.JoinMountOptions(mountOptions, strings.Split(ephemeralVolMountOptions, ","))
273273
}
274274

275275
// set different tmp-path with time info

0 commit comments

Comments
 (0)