Avoid sql error in process handling

pull/4261/head
Michael 2018-01-17 14:10:30 +00:00
parent a526573075
commit fbb024d151
1 changed files with 5 additions and 1 deletions

View File

@ -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()]);
}