[master] 9f6b4f8e5 Use 2s timeouts to stabilize v00014

Poul-Henning Kamp phk at FreeBSD.org
Fri Apr 7 09:43:06 UTC 2023


commit 9f6b4f8e5b3d601a33052dee8705411b9395e9e4
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Fri Apr 7 09:42:44 2023 +0000

    Use 2s timeouts to stabilize v00014

diff --git a/bin/varnishtest/tests/v00014.vtc b/bin/varnishtest/tests/v00014.vtc
index ea4180273..ba25ff80b 100644
--- a/bin/varnishtest/tests/v00014.vtc
+++ b/bin/varnishtest/tests/v00014.vtc
@@ -26,8 +26,8 @@ varnish v1 -vcl {
 
 	probe foo {
 		.url = "/";
-		.timeout = 1s;
-		.interval = 1s;
+		.timeout = 2s;
+		.interval = 2s;
 		.window = 3;
 		.threshold = 2;
 		.initial = 0;
@@ -42,9 +42,9 @@ varnish v1 -vcl {
 
 	sub vcl_recv {
 		if (std.healthy(default)) {
-			return(synth(200,"Backend healthy"));
+			return(synth(200,"Backend healthy " + req.url));
 		} else {
-			return(synth(500,"Backend sick"));
+			return(synth(500,"Backend sick " + req.url));
 		}
 	}
 } -start


More information about the varnish-commit mailing list