Commit 37d20f0c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Testcase for ticket 263



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2807 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 645c7fa1
# $Id$
test "Test refcounting backends from director"
varnish v1 -vcl+backend {
backend node1 { .host = "10.0.0.1"; .port = "80"; }
backend node2 { .host = "10.0.0.2"; .port = "80"; }
backend node3 { .host = "10.0.0.3"; .port = "80"; }
director cluster random {
{ .backend = node1; .weight = 1; }
{ .backend = node2; .weight = 1; }
{ .backend = node3; .weight = 1; }
}
sub vcl_recv {
set req.backend = cluster;
}
} -start
varnish v1 -wait
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