Created
November 11, 2008 18:47
-
-
Save nkallen/23932 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test "Test restarts in vcl_hit" | |
server s { | |
rxreq | |
expect req.url == "/foo" | |
txresp -status 200 | |
rxreq | |
expect req.url == "/foo" | |
txresp -status 200 | |
} -start | |
varnish v -vcl+backend { | |
sub vcl_hit { | |
set obj.ttl = 0s; | |
} | |
} -start | |
client c1 { | |
txreq -url "/foo" | |
rxresp | |
expect resp.status == 200 | |
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