aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-12-05 14:57:56 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-12-05 14:57:56 +0100
commitcc8b2cf6d529062399e0d9b4cde17f2475ef19c1 (patch)
tree8a6c0390fb87d4372af64615323483a754b95fcf
parent407b8190b86e31f5e1fbd31fae30dcbf8be36fe6 (diff)
Only update Server URL when it's necessary.v0.1.1
-rw-r--r--main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.go b/main.go
index ee0def8..0908140 100644
--- a/main.go
+++ b/main.go
@@ -360,8 +360,10 @@ func XdsConnInit(ctx *cli.Context) error {
return cli.NewExitError("ERROR while getting XDS config: "+err.Error(), 1)
}
svrCfg := xdsConf.Servers[XdsServerIndexGet()]
- if serverURL != "" && (svrCfg.URL != serverURL || !svrCfg.Connected) {
- svrCfg.URL = serverURL
+ if (serverURL != "" && svrCfg.URL != serverURL) || !svrCfg.Connected {
+ if serverURL != "" {
+ svrCfg.URL = serverURL
+ }
svrCfg.ConnRetry = 10
if err := XdsConfigSet(xdsConf); err != nil {
return cli.NewExitError("ERROR while updating XDS server URL: "+err.Error(), 1)