diff options
author | Sven Nierlein <sven@nierlein.de> | 2021-07-08 11:31:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 11:31:56 +0200 |
commit | e72ff300177593fb2f8c0426d4a0acc21c9c78e4 (patch) | |
tree | 6b581c23c454c20c0e0501d86ef6e2e94a4cf660 | |
parent | ed33dd37e7f1a6ab5a9185fcbe0e3c32c2c1a98a (diff) | |
parent | a1af8be9781ccdf36087a9e42fa18cfd468f1401 (diff) | |
download | monitoring-plugins-e72ff300177593fb2f8c0426d4a0acc21c9c78e4.tar.gz |
Merge pull request #1690 from xFuture603/change_state_from_infinite_redirect_loop
check_http: changed 'STATE_CRITICAL' to 'STATE_WARNING' for infinite loop
-rw-r--r-- | plugins/check_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 0b712665..34fb4f01 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -1453,8 +1453,8 @@ redir (char *pos, char *status_line) !strncmp(server_address, addr, MAX_IPV4_HOSTLENGTH) && (host_name && !strncmp(host_name, addr, MAX_IPV4_HOSTLENGTH)) && !strcmp(server_url, url)) - die (STATE_WARNING, - _("HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n"), + die (STATE_CRITICAL, + _("HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"), type, addr, i, url, (display_html ? "</A>" : "")); strcpy (server_type, type); |