diff --git a/.env b/.env index 55312bff1..4f335b08b 100644 --- a/.env +++ b/.env @@ -15,8 +15,6 @@ DB_PASSWORD=strtmage BROADCAST_DRIVER=log CACHE_DRIVER=file - -QUEUE_CONNECTION=redis QUEUE_DRIVER=redis SESSION_DRIVER=file diff --git a/app/Console/Commands/holdingfinances.php b/app/Console/Commands/holdingfinances.php index b83f2dec1..af0e8152e 100644 --- a/app/Console/Commands/holdingfinances.php +++ b/app/Console/Commands/holdingfinances.php @@ -64,7 +64,7 @@ class HoldingFinancesCommand extends Command $job->division = 1; $job->charId = 93738489; $job->page = $i; - ProcessWalletJournalJob::dispatch($job); + ProcessWalletJournalJob::dispatch($job)->onQueue('default'); } //Mark the job as finished diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index b8d3a718e..49bd5e47e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -51,6 +51,9 @@ class Kernel extends ConsoleKernel $schedule->command('services:PiTransactions') ->hourly() ->withoutOverlapping(); + + //Horizon Graph Schedule + $schedule->command('horizon:snapshot')->everyFiveMinutes(); } /**