Skip to content

Commit

Permalink
Testing for MTU fix for cmd-forwarder-vpp#557
Browse files Browse the repository at this point in the history
Signed-off-by: Ed Warnicke <[email protected]>
  • Loading branch information
edwarnicke committed Apr 11, 2022
1 parent 2005b96 commit a78cbc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tests/suite_kernel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func pingKernel(ipnet *net.IPNet, handle netns.NsHandle) error {
if ipnet == nil {
return nil
}
pingStr := fmt.Sprintf("ping -c 1 %s", ipnet.IP.String())
pingStr := fmt.Sprintf("ping -c 1 -s 3000 %s", ipnet.IP.String())
if err := exechelper.Run(pingStr,
exechelper.WithEnvirons(os.Environ()...),
exechelper.WithStdout(os.Stdout),
Expand Down

0 comments on commit a78cbc4

Please sign in to comment.