Updated Timeout settings for ProjectDownloadRDSJob
This commit is contained in:
parent
eb9803fbf1
commit
aedca761f8
|
|
@ -17,6 +17,8 @@
|
|||
class ProjectDownloadRDSJob implements ShouldQueue
|
||||
{
|
||||
use Batchable, Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
public $timeout = 800;
|
||||
protected Project $project;
|
||||
protected Carbon $date;
|
||||
protected int $offset;
|
||||
|
|
@ -41,7 +43,7 @@ public function handle(): void
|
|||
];
|
||||
|
||||
$process = new Process($command);
|
||||
$process->setTimeout(600);
|
||||
$process->setTimeout(800);
|
||||
$process->run();
|
||||
|
||||
if (!$process->isSuccessful()) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue