forked from laravel/horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContinueSupervisorCommand.php
54 lines (45 loc) · 1.64 KB
/
ContinueSupervisorCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Laravel\Horizon\Console;
use Illuminate\Console\Command;
use Illuminate\Support\Str;
use Laravel\Horizon\Contracts\SupervisorRepository;
use Laravel\Horizon\MasterSupervisor;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'horizon:continue-supervisor')]
class ContinueSupervisorCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'horizon:continue-supervisor
{name : The name of the supervisor to resume}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Instruct the supervisor to continue processing jobs';
/**
* Execute the console command.
*
* @param \Laravel\Horizon\Contracts\SupervisorRepository $supervisors
* @return void
*/
public function handle(SupervisorRepository $supervisors)
{
$processId = optional(collect($supervisors->all())->first(function ($supervisor) {
return Str::startsWith($supervisor->name, MasterSupervisor::basename())
&& Str::endsWith($supervisor->name, $this->argument('name'));
}))->pid;
if (is_null($processId)) {
$this->components->error('Failed to find a supervisor with this name');
return 1;
}
$this->components->info("Sending CONT signal to process: {$processId}");
if (! posix_kill($processId, SIGCONT)) {
$this->components->error("Failed to send CONT signal to process: {$processId} (".posix_strerror(posix_get_last_error()).')');
}
}
}