From 3fa9e9b6d1444db5539d546125c1f59466d93f99 Mon Sep 17 00:00:00 2001 From: Martin Folkerts Date: Mon, 26 Aug 2024 15:28:21 +0200 Subject: [PATCH] added timeout to InterpolateGrowthModel --- laravel_app/app/Jobs/ProjectInterpolateGrowthModelJob.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/laravel_app/app/Jobs/ProjectInterpolateGrowthModelJob.php b/laravel_app/app/Jobs/ProjectInterpolateGrowthModelJob.php index 153aa1c..c2e838c 100644 --- a/laravel_app/app/Jobs/ProjectInterpolateGrowthModelJob.php +++ b/laravel_app/app/Jobs/ProjectInterpolateGrowthModelJob.php @@ -19,6 +19,8 @@ class ProjectInterpolateGrowthModelJob implements ShouldQueue protected Project $project; + public $timeout = 600; + public function __construct(Project $project) { logger(__CLASS__ . __METHOD__);