Fix the proxy watcher

This commit is contained in:
Asim Aslam
2019-09-20 16:25:29 +01:00
parent 46450ba507
commit 4eb1aaae85
4 changed files with 18 additions and 8 deletions

View File

@@ -8,6 +8,7 @@ import (
"sort"
"strings"
"sync"
"time"
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/codec"
@@ -440,7 +441,16 @@ func NewProxy(opts ...options.Option) proxy.Proxy {
// watch router service routes
p.errChan = make(chan error, 1)
go p.watchRoutes()
go func() {
// continuously attempt to watch routes
for {
// watch the routes
p.watchRoutes()
// in case of failure just wait a second
time.Sleep(time.Second)
}
}()
return p
}