From c551b2a14d10849ee338892842113959b3b35bea Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Wed, 15 Jan 2025 16:38:56 +0100 Subject: [PATCH] Clarify wording in comment --- client/internal/acl/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/acl/manager.go b/client/internal/acl/manager.go index ff51954ef3d..0ade5d7ce32 100644 --- a/client/internal/acl/manager.go +++ b/client/internal/acl/manager.go @@ -289,7 +289,7 @@ func (d *DefaultManager) protoRuleToFirewallRule( rules, err = d.addInRules(ip, protocol, port, action, ipsetName, "") case mgmProto.RuleDirection_OUT: // TODO: Remove this soon. Outbound rules are obsolete. - // We only maintain this for return traffic (in dir) which is now handled by the stateful firewall already + // We only maintain this for return traffic (inbound dir) which is now handled by the stateful firewall already rules, err = d.addOutRules(ip, protocol, port, action, ipsetName, "") default: return "", nil, fmt.Errorf("invalid direction, skipping firewall rule")