From 81b8c3a5c85a7263002b1614a341eb9bb97e3962 Mon Sep 17 00:00:00 2001 From: hossinasaadi Date: Wed, 26 Mar 2025 20:52:18 +0400 Subject: [PATCH] revert AddRule --- app/router/command/command.go | 2 +- features/routing/router.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/router/command/command.go b/app/router/command/command.go index 55e9f8f7..fd9caa22 100644 --- a/app/router/command/command.go +++ b/app/router/command/command.go @@ -55,7 +55,7 @@ func (s *routingServer) OverrideBalancerTarget(ctx context.Context, request *Ove func (s *routingServer) AddRule(ctx context.Context, request *AddRuleRequest) (*AddRuleResponse, error) { if bo, ok := s.router.(routing.Router); ok { - return &AddRuleResponse{}, bo.AddRule(request.Config, request.ShouldAppend, false) + return &AddRuleResponse{}, bo.AddRule(request.Config, request.ShouldAppend) } return nil, errors.New("unsupported router implementation") diff --git a/features/routing/router.go b/features/routing/router.go index b955a133..53761434 100644 --- a/features/routing/router.go +++ b/features/routing/router.go @@ -16,7 +16,7 @@ type Router interface { // PickRoute returns a route decision based on the given routing context. PickRoute(ctx Context) (Route, error) - AddRule(config *serial.TypedMessage, shouldAppend bool, prependRules bool) error + AddRule(config *serial.TypedMessage, shouldAppend bool) error RemoveRule(tag string) error RestrictionRule(restriction *route.Restriction, ip net.IP) error } @@ -62,7 +62,7 @@ func (DefaultRouter) PickRoute(ctx Context) (Route, error) { } // AddRule implements Router. -func (DefaultRouter) AddRule(config *serial.TypedMessage, shouldAppend bool, prependRules bool) error { +func (DefaultRouter) AddRule(config *serial.TypedMessage, shouldAppend bool) error { return common.ErrNoClue }