Commit 7cfe14da authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

vtc: Retire irrelevant test case

parent ce9e5d22
varnishtest "Test refcounting backends from director"
# XXX: This test is probably not relevant with VMOD.directors
varnish v1 -vcl {
import directors;
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"; }
sub vcl_init {
new cluster = directors.random();
cluster.add_backend(node1, 1);
cluster.add_backend(node2, 1);
cluster.add_backend(node3, 1);
}
sub vcl_backend_fetch {
set bereq.backend = cluster.backend();
}
} -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