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 d78e046 commit 600f3c2Copy full SHA for 600f3c2
pkg/blobfuse-proxy/server/server.go
@@ -71,6 +71,9 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
71
if protocol == blob.Fuse2 || server.blobfuseVersion == BlobfuseV2 {
72
klog.V(2).Infof("using blobfuse V2 to mount")
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"
77
cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)
78
} else {
79
klog.V(2).Infof("using blobfuse V1 to mount")
0 commit comments