Skip to content

Commit 9952ea5

Browse files
committed
chore: add logs when append --ignore-open-flags=true in blobfusev2 mount
1 parent 0620edb commit 9952ea5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/blobfuse-proxy/server/server.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
7474
// add this arg for blobfuse2 to solve the issue:
7575
// https://github.com/Azure/azure-storage-fuse/issues/1015
7676
if !strings.Contains(args, "--ignore-open-flags") {
77+
klog.V(2).Infof("append --ignore-open-flags=true to mount args")
7778
args = args + " " + "--ignore-open-flags=true"
7879
}
7980
cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)

0 commit comments

Comments
 (0)