From bb5dba262f27f25b262e26c677fefdc254fafaaf Mon Sep 17 00:00:00 2001 From: anon Date: Mon, 17 Jun 2019 14:25:43 +0200 Subject: [PATCH] correct wrong AND to OR --- _data/rules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/rules.yml b/_data/rules.yml index c3478e5..364deed 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -407,7 +407,7 @@ services: rules: - name: Status Code description: HTTP status code is not 200-299 - query: 'probe_http_status_code <= 199 AND probe_http_status_code >= 300' + query: 'probe_http_status_code <= 199 OR probe_http_status_code >= 300' severity: error - name: SSL certificate will expire soon description: SSL certificate expires in 30 days