test "Test restarts in vcl_hit" | |
server s { | |
rxreq | |
expect req.url == "/foo" | |
txresp -status 200 | |
} -start | |
varnish v -vcl+backend { | |
sub vcl_hit { | |
set obj.ttl = 0s; | |
restart; | |
} | |
} -start | |
client c1 { | |
txreq -url "/foo" | |
rxresp | |
expect resp.status == 200 | |
txreq -url "/foo" | |
rxresp | |
expect resp.status == 200 | |
} -run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment