Replaced the debug network string by the correct router local address.
This commit is contained in:
parent
59035ab801
commit
4e5fbbf7eb
@ -84,7 +84,7 @@ func (r *router) Network() string {
|
||||
// Start starts the router
|
||||
func (r *router) Start() error {
|
||||
// add local service routes into the routing table
|
||||
if err := r.addServiceRoutes(r.opts.LocalRegistry, "local", DefaultLocalMetric); err != nil {
|
||||
if err := r.addServiceRoutes(r.opts.LocalRegistry, r.opts.Address, DefaultLocalMetric); err != nil {
|
||||
return fmt.Errorf("failed adding routes for local services: %v", err)
|
||||
}
|
||||
|
||||
@ -115,7 +115,7 @@ func (r *router) Start() error {
|
||||
go func() {
|
||||
defer r.wg.Done()
|
||||
// watch local registry and register routes in routine table
|
||||
errChan <- r.manageServiceRoutes(localRegWatcher, "local", DefaultLocalMetric)
|
||||
errChan <- r.manageServiceRoutes(localRegWatcher, r.opts.Address, DefaultLocalMetric)
|
||||
}()
|
||||
|
||||
r.wg.Add(1)
|
||||
|
Loading…
Reference in New Issue
Block a user