Commit c910feee authored by Nils Goroll's avatar Nils Goroll

6.1 compat

parent eaa6e855
......@@ -8,6 +8,10 @@
#define VARGS(x) vmod_ ## x ## _arg
#endif
#ifndef VPFX
#define VPFX(x) vmod_ ## x
#endif
/* ------------------------------------------------------------
* workaround missing VRT_DirectorResolve
* Ref https://github.com/varnishcache/varnish-cache/pull/2680
......
......@@ -193,19 +193,3 @@ client c1 {
} -run
logexpect l1 -wait
varnish v1 -errvcl {Can not deny the NULL backend} {
import cluster;
import directors;
backend dummy { .host = "${bad_ip}"; }
sub vcl_init {
new rr = directors.round_robin();
rr.add_backend(dummy);
new cl = cluster.cluster(
rr.backend(),
deny=directors.lookup("null"),
real=dummy);
}
}
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