forked from GNUsocial/gnu-social
$this->log to common_log in Queue_item
darcs-hash:20080828004503-84dde-c406172d750d0a5452d5cc62ecd7b27db381c575.gz
This commit is contained in:
parent
27fff6ff04
commit
6b1f391306
@ -38,15 +38,15 @@ class Queue_item extends DB_DataObject
|
|||||||
# XXX: potential race condition
|
# XXX: potential race condition
|
||||||
# can we force it to only update if claimed is still NULL
|
# can we force it to only update if claimed is still NULL
|
||||||
# (or old)?
|
# (or old)?
|
||||||
$this->log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id);
|
common_log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id);
|
||||||
$orig = clone($qi);
|
$orig = clone($qi);
|
||||||
$qi->claimed = common_sql_now();
|
$qi->claimed = common_sql_now();
|
||||||
$result = $qi->update($orig);
|
$result = $qi->update($orig);
|
||||||
if ($result) {
|
if ($result) {
|
||||||
$this->log(LOG_INFO, 'claim succeeded.');
|
common_log(LOG_INFO, 'claim succeeded.');
|
||||||
return $qi;
|
return $qi;
|
||||||
} else {
|
} else {
|
||||||
$this->log(LOG_INFO, 'claim failed.');
|
common_log(LOG_INFO, 'claim failed.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$qi = NULL;
|
$qi = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user