diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-15 11:12:32 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-02-23 19:15:01 +0100 |
commit | 38e0baedab9da4516cdc97b526392cbc2c7da67e (patch) | |
tree | e183b43bf32b6a3d50865e3d35d78255152416a7 /lib/agent/apiv1-config.go | |
parent | bb9af073f62551fd295a9cf236b00e6376ead1ae (diff) |
Fixed storage of Global and XDS Server configuration.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/agent/apiv1-config.go')
-rw-r--r-- | lib/agent/apiv1-config.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/agent/apiv1-config.go b/lib/agent/apiv1-config.go index 54d3525..b24dc21 100644 --- a/lib/agent/apiv1-config.go +++ b/lib/agent/apiv1-config.go @@ -82,6 +82,14 @@ func (s *APIService) setConfig(c *gin.Context) { } } + // Update XdsServer config + for _, svrCfg := range cfgArg.Servers { + if err := s.UpdateXdsServer(svrCfg); err != nil { + // willingly ignore error + // s.Log.Debugf("Error while updating XDS Server config: %v", err) + } + } + c.JSON(http.StatusOK, s._getConfig()) } |