mirror of
https://github.com/pterodactyl/panel.git
synced 2025-01-31 19:01:35 +01:00
Fix a reading error when we added suspensions
Also remove excessie exception logging for these
This commit is contained in:
parent
0deb262c56
commit
5a07073e0a
@ -67,7 +67,7 @@ class RunTasks extends Command
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$tasks = Models\Task::where('queued', 0)->where('suspended', 0)->where('next_run', '<=', (Carbon::now())->toAtomString())->get();
|
||||
$tasks = Models\Task::where('queued', 0)->where('active', 1)->where('next_run', '<=', (Carbon::now())->toAtomString())->get();
|
||||
|
||||
$this->info(sprintf('Preparing to queue %d tasks.', count($tasks)));
|
||||
$bar = $this->output->createProgressBar(count($tasks));
|
||||
|
@ -93,7 +93,6 @@ class SendScheduledTask extends Job implements ShouldQueue
|
||||
'run_status' => 1,
|
||||
'response' => $ex->getMessage()
|
||||
]);
|
||||
throw $ex;
|
||||
} finally {
|
||||
$cron = Cron::factory(sprintf('%s %s %s %s %s %s',
|
||||
$this->task->minute,
|
||||
|
Loading…
x
Reference in New Issue
Block a user