Skip to content

Instantly share code, notes, and snippets.

@nkallen
Created November 11, 2008 18:45
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save nkallen/23930 to your computer and use it in GitHub Desktop.
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