File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
pkg/blobfuse-proxy/server Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -65,13 +65,15 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
65
65
66
66
var cmd * exec.Cmd
67
67
var result mount_azure_blob.MountAzureBlobResponse
68
- switch server .blobfuseVersion {
69
- case BlobfuseV1 :
70
- cmd = exec .Command ("blobfuse" , strings .Split (args , " " )... )
71
- case BlobfuseV2 :
72
- args = "mount " + args
73
- cmd = exec .Command ("blobfuse2" , strings .Split (args , " " )... )
74
- }
68
+ // switch server.blobfuseVersion {
69
+ // case BlobfuseV1:
70
+ // cmd = exec.Command("blobfuse", strings.Split(args, " ")...)
71
+ // case BlobfuseV2:
72
+ // args = "mount " + args
73
+ // cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)
74
+ // }
75
+ args = "mount " + args
76
+ cmd = exec .Command ("blobfuse2" , strings .Split (args , " " )... )
75
77
76
78
cmd .Env = append (cmd .Env , authEnv ... )
77
79
klog .Infof ("zzzzzzzzzzzzzzz args %v" , args )
You can’t perform that action at this time.
0 commit comments