Skip to content

Commit

Permalink
fix: #239 healthcheck for workers
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Oct 20, 2024
1 parent 0d5acc0 commit add9b05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Commands/SelfHostPtah.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public function handle()
'command' => null,
],
'healthcheck' => [
'command' => null,
'command' => 'pgrep -f "php artisan schedule:work"',
'interval' => 10,
'timeout' => 5,
'retries' => 3,
Expand All @@ -314,7 +314,7 @@ public function handle()
'command' => null,
],
'healthcheck' => [
'command' => null,
'command' => 'pgrep -f "php artisan queue:work"',
'interval' => 10,
'timeout' => 5,
'retries' => 3,
Expand Down

0 comments on commit add9b05

Please sign in to comment.