Increase number of attempts when trying to poll a system

This commit is contained in:
Deon George 2024-10-23 12:07:10 +11:00
parent 670450387c
commit 7e87481e05

View File

@ -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;