We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 600f3c2 commit 0620edbCopy full SHA for 0620edb
pkg/blobfuse-proxy/server/server.go
@@ -73,7 +73,9 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
73
args = "mount " + args
74
// add this arg for blobfuse2 to solve the issue:
75
// https://github.com/Azure/azure-storage-fuse/issues/1015
76
- args = args + " " + "--ignore-open-flags=true"
+ if !strings.Contains(args, "--ignore-open-flags") {
77
+ args = args + " " + "--ignore-open-flags=true"
78
+ }
79
cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)
80
} else {
81
klog.V(2).Infof("using blobfuse V1 to mount")
0 commit comments