From a43eef47248c86d3d68b812be6dee91bcf12f2cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Mon, 2 Dec 2024 03:24:07 +0200 Subject: [PATCH] fix: increase persist job timeout (#141) --- app/Jobs/PersistTemporaryTableData.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/Jobs/PersistTemporaryTableData.php b/app/Jobs/PersistTemporaryTableData.php index cb24fe5..a579c90 100644 --- a/app/Jobs/PersistTemporaryTableData.php +++ b/app/Jobs/PersistTemporaryTableData.php @@ -20,6 +20,13 @@ class PersistTemporaryTableData implements ShouldQueue, ShouldBeUnique public ?int $electionId; + /** + * The number of seconds the job can run before timing out. + * + * @var int + */ + public $timeout = 240; + /** * Create a new job instance. */