From a5cf4060f31069f5fa82418922ae7d69f88ceb93 Mon Sep 17 00:00:00 2001 From: Christophe Raffalli Date: Tue, 7 Feb 2023 16:15:08 -1000 Subject: [PATCH] Update download_chunked.sh There was a type: Tranfer instead of Transfer and anyway we want Accept. But Accept-encoding is not looked at for chunked. --- tests/download_chunked.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/download_chunked.sh b/tests/download_chunked.sh index 5ee1e1b2..b156ef43 100755 --- a/tests/download_chunked.sh +++ b/tests/download_chunked.sh @@ -9,15 +9,15 @@ sleep 0.1 echo download1 1>&2 curl -N "http://localhost:${PORT}/foo_50" -o data21 \ - -H 'Tranfer-encoding: chunked' --max-time 10 + -H 'Accept-encoding: chunked' --max-time 10 echo download2 1>&2 curl -N "http://localhost:${PORT}/foo_50" -o data22 \ - -H 'Tranfer-encoding: chunked' --max-time 10 + -H 'Accept-encoding: chunked' --max-time 10 echo download3 1>&2 curl -N "http://localhost:${PORT}/foo_50" -o data23 \ - -H 'Tranfer-encoding: chunked' --max-time 10 + -H 'Accept-encoding: chunked' --max-time 10 kill $PID wc data21 data22 data23