diff options
author | Daniel Uhlmann <daniel.uhlmann@t-systems.com> | 2021-06-24 11:37:14 +0200 |
---|---|---|
committer | Daniel Uhlmann <daniel.uhlmann@t-systems.com> | 2021-06-24 11:37:14 +0200 |
commit | a1af8be9781ccdf36087a9e42fa18cfd468f1401 (patch) | |
tree | 99df1d65b6a2fba2a222e959a87b448eb0a28a0e /plugins | |
parent | b02bcd4870a81d0ba4d4070d3cfc32a1aac61aad (diff) | |
download | monitoring-plugins-a1af8be9781ccdf36087a9e42fa18cfd468f1401.tar.gz |
changed 'STATE_CRITICAL' to 'STATE_WARNING' for infinite loop
Diffstat (limited to 'plugins')
-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); |