Allow gearman env vars
This commit is contained in:
parent
31c40f8342
commit
109ac5f827
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,10 @@ class GearmanLockTest extends OrmFunctionalTestCase
|
||||||
$this->tasks = [];
|
$this->tasks = [];
|
||||||
|
|
||||||
$this->gearman = new \GearmanClient();
|
$this->gearman = new \GearmanClient();
|
||||||
$this->gearman->addServer();
|
$this->gearman->addServer(
|
||||||
|
isset($_SERVER['GEARMAN_HOST']) ? $_SERVER['GEARMAN_HOST'] : null,
|
||||||
|
isset($_SERVER['GEARMAN_PORT']) ? $_SERVER['GEARMAN_PORT'] : 4730
|
||||||
|
);
|
||||||
$this->gearman->setCompleteCallback([$this, "gearmanTaskCompleted"]);
|
$this->gearman->setCompleteCallback([$this, "gearmanTaskCompleted"]);
|
||||||
|
|
||||||
$article = new CmsArticle();
|
$article = new CmsArticle();
|
||||||
|
|
Loading…
Add table
Reference in a new issue