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 ff54c31 commit 0ee8cf1Copy full SHA for 0ee8cf1
pkg/blobfuse-proxy/main.go
@@ -27,16 +27,13 @@ import (
27
csicommon "sigs.k8s.io/blob-csi-driver/pkg/csi-common"
28
)
29
30
-func init() {
31
- _ = flag.Set("logtostderr", "true")
32
-}
33
-
34
var (
35
blobfuseProxyEndpoint = flag.String("blobfuse-proxy-endpoint", "unix://tmp/blobfuse-proxy.sock", "blobfuse-proxy endpoint")
36
37
38
func main() {
39
klog.InitFlags(nil)
+ _ = flag.Set("logtostderr", "true")
40
flag.Parse()
41
proto, addr, err := csicommon.ParseEndpoint(*blobfuseProxyEndpoint)
42
if err != nil {
0 commit comments