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.
2 parents d78e046 + 9952ea5 commit bd9a388Copy full SHA for bd9a388
pkg/blobfuse-proxy/server/server.go
@@ -71,6 +71,12 @@ 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
+ if !strings.Contains(args, "--ignore-open-flags") {
77
+ klog.V(2).Infof("append --ignore-open-flags=true to mount args")
78
+ args = args + " " + "--ignore-open-flags=true"
79
+ }
80
cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)
81
} else {
82
klog.V(2).Infof("using blobfuse V1 to mount")
0 commit comments