From 7e87481e05a9072f3a0a5d0526be1cbdedbdec45 Mon Sep 17 00:00:00 2001 From: Deon George Date: Wed, 23 Oct 2024 12:07:10 +1100 Subject: [PATCH] Increase number of attempts when trying to poll a system --- app/Jobs/AddressPoll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/AddressPoll.php b/app/Jobs/AddressPoll.php index 972dcc5..debb997 100644 --- a/app/Jobs/AddressPoll.php +++ b/app/Jobs/AddressPoll.php @@ -27,7 +27,7 @@ class AddressPoll implements ShouldQueue, ShouldBeUnique private const LOGKEY = 'JAP'; - public int $tries = 5; + public int $tries = 10; public int $maxExceptions = 1; public bool $failOnTimeout = TRUE;