Skip to content

Commit da174ad

Browse files
authored
Remove use of comment module when testing kernel support for iptables version (istio#57679)
1 parent 3886396 commit da174ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/istio-iptables/pkg/dependencies/implementation_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"istio.io/istio/tools/istio-iptables/pkg/constants"
3333
)
3434

35-
var testRuleAdd = []string{"-t", "nat", "-A", "INPUT", "-p", "255", "-j", "RETURN", "-m", "comment", "--comment", `"Istio no-op iptables capability probe"`}
35+
var testRuleAdd = []string{"-t", "nat", "-A", "INPUT", "-p", "255", "-j", "RETURN"}
3636

3737
// TODO the entire `istio-iptables` package is linux-specific, I'm not sure we really need
3838
// platform-differentiators for the `dependencies` package itself.

0 commit comments

Comments
 (0)