many comments of last pull request applied

This commit is contained in:
jygaulier
2012-05-10 14:15:47 +02:00
parent 00df363964
commit 37adb06965
22 changed files with 686 additions and 837 deletions

View File

@@ -26,7 +26,6 @@ use Symfony\Component\Console\Command\Command;
class module_console_taskrun extends Command
{
private $task;
private $shedulerPID;
public function __construct($name = null)
@@ -125,7 +124,7 @@ class module_console_taskrun extends Command
if (method_exists($this->task, 'signal'))
$this->task->signal('SIGNAL_SCHEDULER_DIED');
else
$this->task->setState(task_abstract::STATUS_TOSTOP);
$this->task->setState(task_abstract::STATE_TOSTOP);
}
@@ -133,4 +132,4 @@ class module_console_taskrun extends Command
}
}
}
}
}