aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/http_format_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2017-10-24 17:55:24 +0200
committerIngela Anderton Andin <[email protected]>2017-11-01 10:53:17 +0100
commit2cc5ba70cbbc6b3ace81a2a0324417c3b65265bb (patch)
treeb8fc8b1e746933fc89f838f32c31b8c8d39a2801 /lib/inets/test/http_format_SUITE.erl
parenta98379d0519c28f9bc9b673ed2c09fb1ad52456e (diff)
downloadotp-2cc5ba70cbbc6b3ace81a2a0324417c3b65265bb.tar.gz
otp-2cc5ba70cbbc6b3ace81a2a0324417c3b65265bb.tar.bz2
otp-2cc5ba70cbbc6b3ace81a2a0324417c3b65265bb.zip
inets: httpd - do not hardcode 302 status for location
If a status code is provide by the ESI script that status code should have precedence over internal defaults. Also remove RFC 2616 requirement that URI must be absolute, that requirement is relaxed by RFC 7231.
Diffstat (limited to 'lib/inets/test/http_format_SUITE.erl')
-rw-r--r--lib/inets/test/http_format_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/http_format_SUITE.erl b/lib/inets/test/http_format_SUITE.erl
index 4e10a97f58..9a13ed3d17 100644
--- a/lib/inets/test/http_format_SUITE.erl
+++ b/lib/inets/test/http_format_SUITE.erl
@@ -535,7 +535,7 @@ esi_parse_headers(Config) when is_list(Config) ->
{"location","http://foo.bar.se"}], 302} =
httpd_esi:handle_headers(Headers2),
- {proceed,"/foo/bar.html"} =
+ {ok,[{"location","/foo/bar.html"}], 302} =
httpd_esi:handle_headers("location:/foo/bar.html\r\n").
%%--------------------------------------------------------------------