From c2578145843d4d48be5f24578044dbd26eb08a76 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 12 Feb 2019 23:13:47 +0000 Subject: [PATCH] buildvm-s390x varnish: interval has to be more than timeout or things go strange. Signed-off-by: Kevin Fenzi --- roles/varnish/templates/s390kojipkgs.vcl.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/varnish/templates/s390kojipkgs.vcl.j2 b/roles/varnish/templates/s390kojipkgs.vcl.j2 index e459dba716..6f5cd9dcae 100644 --- a/roles/varnish/templates/s390kojipkgs.vcl.j2 +++ b/roles/varnish/templates/s390kojipkgs.vcl.j2 @@ -20,7 +20,7 @@ backend koji01 { .probe = { .url = "/work/"; .timeout = 10s; - .interval = 5s; + .interval = 30s; .window = 5; .threshold = 3; } @@ -34,7 +34,7 @@ backend kojipkgs01 { .probe = { .url = "/"; .timeout = 10s; - .interval = 5s; + .interval = 30s; .window = 5; .threshold = 3; } @@ -48,7 +48,7 @@ backend kojipkgs02 { .probe = { .url = "/"; .timeout = 10s; - .interval = 5s; + .interval = 30s; .window = 5; .threshold = 3; }