diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-04 23:42:31 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-04 23:42:33 +0100 |
commit | f1083a8259b3d2f560b5f3ccb8b47c94e297d7fa (patch) | |
tree | f737d46443a30c066c29eea738a34174c64ae746 /lib/agent/projects.go | |
parent | 45f6472d1e8ecad428da314a6d762143f033865d (diff) |
Fixed Xds-server re-connection.
Add a callback on XDS-Server connect in order to properly register to
XDS Server events in all cases (IOW on reconnection).
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/agent/projects.go')
-rw-r--r-- | lib/agent/projects.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/agent/projects.go b/lib/agent/projects.go index 7393364..4e8b0f6 100644 --- a/lib/agent/projects.go +++ b/lib/agent/projects.go @@ -54,6 +54,7 @@ func NewProjects(ctx *Context, st *st.SyncThing) *Projects { // Init Load Projects configuration func (p *Projects) Init(server *XdsServer) error { + svrList := make(map[string]*XdsServer) // If server not set, load for all servers if server == nil { |