Skip to content

Commit 7ad74e0

Browse files
committed
Fix for router with dynamic config changes not reloading - need to
simulate an actual change otherwise router commit doesn't call reload. And address @mfojtik review comments. fixes bugz #1612019
1 parent 90695a9 commit 7ad74e0

File tree

1 file changed

+4
-3
lines changed
  • pkg/router/template/configmanager/haproxy

1 file changed

+4
-3
lines changed

pkg/router/template/configmanager/haproxy/manager.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -658,11 +658,12 @@ func (cm *haproxyConfigManager) commitRouterConfig() {
658658
cm.commitTimer = nil
659659
cm.lock.Unlock()
660660

661-
// [Re]Adding a blueprint pool route triggers a router state change.
662-
// And calling Commit ensures that the config gets written out.
661+
// Adding (+removing) a new blueprint pool route triggers a router state
662+
// change. And calling Commit ensures that the config gets written out.
663663
route := createBlueprintRoute(routeapi.TLSTerminationEdge)
664-
route.Name = fmt.Sprintf("%v-1", route.Name)
664+
route.Name = fmt.Sprintf("%s-temp-%d", route.Name, time.Now().Unix())
665665
cm.router.AddRoute(route)
666+
cm.router.RemoveRoute(route)
666667

667668
glog.V(4).Infof("Committing associated template router ... ")
668669
cm.router.Commit()

0 commit comments

Comments
 (0)