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 ef4cc31 commit 76e3ff1Copy full SHA for 76e3ff1
pkg/blobfuse-proxy/server/server.go
@@ -95,6 +95,9 @@ func (server *MountServer) MountAzureBlob(_ context.Context,
95
output, err := cmd.CombinedOutput()
96
if err != nil {
97
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
+ }
101
} else {
102
klog.V(2).Infof("successfully mounted")
103
}
0 commit comments