[master] 429835da3 try to stabilize this test

Nils Goroll nils.goroll at uplex.de
Wed Apr 10 11:14:07 UTC 2019


commit 429835da32f9b282e07fa895b6d506b063884bc6
Author: Nils Goroll <nils.goroll at uplex.de>
Date:   Wed Apr 10 13:13:27 2019 +0200

    try to stabilize this test
    
    Ref #2963

diff --git a/bin/varnishtest/tests/r02964.vtc b/bin/varnishtest/tests/r02964.vtc
index 89f3d4184..06f1c89c6 100644
--- a/bin/varnishtest/tests/r02964.vtc
+++ b/bin/varnishtest/tests/r02964.vtc
@@ -4,6 +4,7 @@ server s1 {
 	rxreq
 	expect req.url == "/hfm"
 	txresp -hdr "HFM: True" -bodylen 65530
+	accept
 	rxreq
 	expect req.url == "/hfp"
 	txresp -hdr "HFP: True" -bodylen 65550
@@ -15,6 +16,9 @@ varnish v1 -arg "-s Transient=default" -vcl+backend {
 			return (synth(200));
 		}
 	}
+	sub vcl_backend_fetch {
+		set bereq.http.Connection = "close";
+	}
 	sub vcl_backend_response {
 		if (bereq.url == "/hfm") {
 			set beresp.uncacheable = true;


More information about the varnish-commit mailing list