Skip to content

Commit

Permalink
#241 Increased the amount of workers to reflect the beefier server th…
Browse files Browse the repository at this point in the history
…e site is running on now.
  • Loading branch information
Wotuu committed Jun 13, 2020
1 parent 447f080 commit c08dad1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/horizon.php
Expand Up @@ -125,7 +125,7 @@
|
*/

'memory_limit' => 64,
'memory_limit' => 1028,

/*
|--------------------------------------------------------------------------
Expand All @@ -144,14 +144,14 @@
'connection' => 'redis',
'queue' => [sprintf('%s-production-default', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'processes' => 2,
'tries' => 3,
],
'supervisor-thumbnail' => [
'connection' => 'redis',
'queue' => [sprintf('%s-production-thumbnail', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'processes' => 4,
'tries' => 1,
],
],
Expand All @@ -161,14 +161,14 @@
'connection' => 'redis',
'queue' => [sprintf('%s-local-default', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'processes' => 2,
'tries' => 3,
],
'supervisor-thumbnail' => [
'connection' => 'redis',
'queue' => [sprintf('%s-local-thumbnail', env('APP_TYPE'))],
'balance' => 'simple',
'processes' => 1,
'processes' => 2,
'tries' => 1,
],
],
Expand Down

0 comments on commit c08dad1

Please sign in to comment.