Merged in Phergie change (Allow sec/usec = 0)
This commit is contained in:
parent
007d9ec8ce
commit
c0214ac0a4
|
@ -87,7 +87,7 @@ class Phergie_Process_Async extends Phergie_Process_Abstract
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($this->sec) && empty($this->usec)) {
|
if (isset($this->sec) && isset($this->usec)) {
|
||||||
throw new Phergie_Process_Exception(
|
throw new Phergie_Process_Exception(
|
||||||
'One of the processor options "sec" or "usec" must be specified'
|
'One of the processor options "sec" or "usec" must be specified'
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user