Skip to content

Instantly share code, notes, and snippets.

@nkallen
Created November 11, 2008 18:47
Show Gist options
  • Save nkallen/23932 to your computer and use it in GitHub Desktop.
Save nkallen/23932 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
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