Skip to content

Commit 76e3ff1

Browse files
committed
cleanup: add more logging in blobfuse-proxy when blobfuse2 not found
1 parent ef4cc31 commit 76e3ff1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/blobfuse-proxy/server/server.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ func (server *MountServer) MountAzureBlob(_ context.Context,
9595
output, err := cmd.CombinedOutput()
9696
if err != nil {
9797
klog.Error("blobfuse mount failed: with error:", err.Error())
98+
if strings.Contains(err.Error(), "executable file not found") {
99+
klog.Error("os.Environ: %v", os.Environ())
100+
}
98101
} else {
99102
klog.V(2).Infof("successfully mounted")
100103
}

0 commit comments

Comments
 (0)