Merge pull request #4261 from annando/bugfix-process
Avoid sql error in process handling
This commit is contained in:
commit
ca0a261e08
|
@ -26,9 +26,13 @@ class Process extends BaseObject
|
|||
{
|
||||
$return = true;
|
||||
|
||||
if (is_null($pid)) {
|
||||
$pid = getmypid();
|
||||
}
|
||||
|
||||
dba::transaction();
|
||||
|
||||
if (!dba::exists('process', ['pid' => getmypid()])) {
|
||||
if (!dba::exists('process', ['pid' => $pid])) {
|
||||
$return = dba::insert('process', ['pid' => $pid, 'command' => $command, 'created' => datetime_convert()]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue