From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Brivio To: passt-dev@passt.top Subject: [PATCH 1/3] demo/pasta: Fix bad sleep directive Date: Thu, 19 May 2022 01:28:27 +0200 Message-ID: <20220518232829.2775820-2-sbrivio@redhat.com> In-Reply-To: <20220518232829.2775820-1-sbrivio@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3290998182065888827==" --===============3290998182065888827== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 'sleep' always needs an argument, this was meant to introduce a 2 seconds delay. Signed-off-by: Stefano Brivio --- test/demo/pasta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/demo/pasta b/test/demo/pasta index 4bfea80..506d948 100644 --- a/test/demo/pasta +++ b/test/demo/pasta @@ -110,7 +110,7 @@ nl say Now the other way around... nl say we can use a loopback address -sleep +sleep 2 hostb nc -l -p 31337 sleep 2 ns echo "Hello from the namespace" | nc -N 127.0.0.1 31337 -- 2.35.1 --===============3290998182065888827==--