Merge pull request #4751 from Roardom/tmdb-tv-credit-timeout

(Fix) Increase job timeout for tmdb tv fetching
This commit is contained in:
HDVinnie
2025-06-08 20:34:35 -04:00
committed by GitHub
+16
View File
@@ -48,6 +48,22 @@ class ProcessTvJob implements ShouldQueue
{
}
/**
* The number of seconds the job can run before timing out.
*
* Some shows have 2000+ credits requiring more than the default of 60 seconds.
*
* @var int
*/
public $timeout = 300;
/**
* Indicate if the job should be marked as failed on timeout.
*
* @var bool
*/
public $failOnTimeout = true;
/**
* Get the middleware the job should pass through.
*