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 0620edb commit 9952ea5Copy full SHA for 9952ea5
pkg/blobfuse-proxy/server/server.go
@@ -74,6 +74,7 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
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, " ")...)
0 commit comments