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 | |
| parent | b02bcd4870a81d0ba4d4070d3cfc32a1aac61aad (diff) | |
| download | monitoring-plugins-a1af8be9781ccdf36087a9e42fa18cfd468f1401.tar.gz | |
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) | |||
| 1453 | !strncmp(server_address, addr, MAX_IPV4_HOSTLENGTH) && | 1453 | !strncmp(server_address, addr, MAX_IPV4_HOSTLENGTH) && |
| 1454 | (host_name && !strncmp(host_name, addr, MAX_IPV4_HOSTLENGTH)) && | 1454 | (host_name && !strncmp(host_name, addr, MAX_IPV4_HOSTLENGTH)) && |
| 1455 | !strcmp(server_url, url)) | 1455 | !strcmp(server_url, url)) |
| 1456 | die (STATE_WARNING, | 1456 | die (STATE_CRITICAL, |
| 1457 | _("HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n"), | 1457 | _("HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"), |
| 1458 | type, addr, i, url, (display_html ? "</A>" : "")); | 1458 | type, addr, i, url, (display_html ? "</A>" : "")); |
| 1459 | 1459 | ||
| 1460 | strcpy (server_type, type); | 1460 | strcpy (server_type, type); |
