Skip to content

Commit 934687d

Browse files
knobuncmfojtik
authored andcommitted
UPSTREAM: 55248: Add the iptables wait flag change to more places
There were a few places that the last PR kubernetes#54763 missed because the flags that PR covered were of the form -w2. Some of the code had --wait=2. This changes that code to use the same global variable for the wait setting so that everything is consistent.
1 parent 0d5291c commit 934687d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pkg/util/iptables/iptables.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ func getIPTablesRestoreWaitFlag(exec utilexec.Interface) []string {
571571
return nil
572572
}
573573

574-
return []string{"--wait=2"}
574+
return []string{WaitSecondsString}
575575
}
576576

577577
// getIPTablesRestoreVersionString runs "iptables-restore --version" to get the version string

pkg/util/iptables/iptables_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ func TestRestoreAllWait(t *testing.T) {
10541054
}
10551055

10561056
commandSet := sets.NewString(fcmd.CombinedOutputLog[2]...)
1057-
if !commandSet.HasAll("iptables-restore", "--wait=2", "--counters", "--noflush") {
1057+
if !commandSet.HasAll("iptables-restore", WaitSecondsString, "--counters", "--noflush") {
10581058
t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2])
10591059
}
10601060

@@ -1103,8 +1103,8 @@ func TestRestoreAllWaitOldIptablesRestore(t *testing.T) {
11031103
if !commandSet.HasAll("iptables-restore", "--counters", "--noflush") {
11041104
t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2])
11051105
}
1106-
if commandSet.HasAny("--wait=2") {
1107-
t.Errorf("wrong CombinedOutput() log (unexpected --wait=2 option), got %s", fcmd.CombinedOutputLog[2])
1106+
if commandSet.HasAny(WaitSecondsString) {
1107+
t.Errorf("wrong CombinedOutput() log (unexpected %s option), got %s", WaitSecondsString, fcmd.CombinedOutputLog[2])
11081108
}
11091109

11101110
if fcmd.CombinedOutputCalls != 3 {

0 commit comments

Comments
 (0)