File tree 1 file changed +4
-3
lines changed
pkg/router/template/configmanager/haproxy
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -658,11 +658,12 @@ func (cm *haproxyConfigManager) commitRouterConfig() {
658
658
cm .commitTimer = nil
659
659
cm .lock .Unlock ()
660
660
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.
663
663
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 () )
665
665
cm .router .AddRoute (route )
666
+ cm .router .RemoveRoute (route )
666
667
667
668
glog .V (4 ).Infof ("Committing associated template router ... " )
668
669
cm .router .Commit ()
You can’t perform that action at this time.
0 commit comments