File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package vxrouter
22
33// usefule constants for the whole project
44const (
5- Version = "0.0.2 "
5+ Version = "0.0.3 "
66 EnvPrefix = "VXR_"
77 NetworkDriver = "vxrNet"
88 IpamDriver = "vxrIpam"
Original file line number Diff line number Diff line change @@ -41,19 +41,19 @@ func main() {
4141 Name : "scope, s" ,
4242 Value : "local" ,
4343 Usage : "Scope of the network. local or global." ,
44- EnvVar : envPrefix + "NETWORK-SCOPE " ,
44+ EnvVar : envPrefix + "NETWORK_SCOPE " ,
4545 },
4646 cli.DurationFlag {
4747 Name : "prop-timeout, pt" ,
4848 Value : 100 * time .Millisecond ,
4949 Usage : "How long to wait for external route propagation" ,
50- EnvVar : envPrefix + "PROP-TIMEOUT " ,
50+ EnvVar : envPrefix + "PROP_TIMEOUT " ,
5151 },
5252 cli.DurationFlag {
5353 Name : "resp-timeout, rt" ,
5454 Value : 10 * time .Second ,
5555 Usage : "Maximum allowed response milliseconds, to prevent hanging docker daemon" ,
56- EnvVar : envPrefix + "RESP-TIMEOUT " ,
56+ EnvVar : envPrefix + "RESP_TIMEOUT " ,
5757 },
5858 }
5959 app .Action = Run
You can’t perform that action at this time.
0 commit comments