From 5079e836cae51e0d29c60909465e6d0d7b53550b Mon Sep 17 00:00:00 2001 From: Axel <1597611+axeloz@users.noreply.github.com> Date: Mon, 20 Dec 2021 09:51:03 +0100 Subject: [PATCH] Increasing timeout --- monitolite.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitolite.pl b/monitolite.pl index a651948..7d34c41 100644 --- a/monitolite.pl +++ b/monitolite.pl @@ -199,7 +199,7 @@ sub check_http { ssl_opts => { verify_hostname => 1 }, protocols_allowed => ['http', 'https'] ); - $check->timeout(5); + $check->timeout(20); $check->env_proxy; my $response = $check->get($host, ':content_cb' => \&process_data);