GearmanBundle
GearmanBundle copied to clipboard
JobStatus::isFinished() never returns true
This code never evaluates to true as getCompletionPercent() will not usually return 1 unless you happen to request jobstatus at the exact moment it hits 1.
public function isFinished()
{
return $this->isKnown() && !$this->isRunning() && $this->getCompletionPercent() == 1;
}
What do you propose?
ping @codecowboy