We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1ad2b1 + e454d94 commit ea3799bCopy full SHA for ea3799b
pkg/blobfuse-proxy/server/server.go
@@ -20,6 +20,7 @@ import (
20
"context"
21
"fmt"
22
"net"
23
+ "os"
24
"os/exec"
25
"strings"
26
"sync"
@@ -85,7 +86,7 @@ func (server *MountServer) MountAzureBlob(_ context.Context,
85
86
cmd = exec.Command("blobfuse", strings.Split(args, " ")...)
87
}
88
- cmd.Env = append(cmd.Env, authEnv...)
89
+ cmd.Env = append(os.Environ(), authEnv...)
90
output, err := cmd.CombinedOutput()
91
if err != nil {
92
klog.Error("blobfuse mount failed: with error:", err.Error())
0 commit comments