blob: 48a2fe14cc2c0ab7507960208ef62b6c722a1d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env php
<?php
//stop a single running worker
namespace phinde;
require_once __DIR__ . '/../src/init.php';
$gmclient = new \GearmanClient();
$gmclient->addServer('127.0.0.1');
$gmclient->doHigh(
$GLOBALS['phinde']['queuePrefix'] . 'phinde_quit', 'none'
);
?>
|