Commit e9cb3ae2 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Remove this testcase, it is no longer relevant.

parent c68e22ec
varnishtest "restarting a pass in vcl_backend_response should not panic"
server s1 {
rxreq
txresp -status 304 -body "1234"
accept
rxreq
txresp -status 200 -body "56"
} -start
varnish v1 -vcl+backend {
sub vcl_recv {
return (pass);
}
sub vcl_backend_response {
if (beresp.status != 200) {
return (restart);
}
}
} -start
client c1 {
txreq
rxresp
expect resp.bodylen == 2
} -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment