mirror of
https://github.com/friendica/friendica
synced 2025-04-24 04:30:11 +00:00
facebook queueing on failure, sync update.php with boot.php update version to avoid race condition
This commit is contained in:
parent
f2bdcb19e7
commit
a27391c33a
6 changed files with 119 additions and 34 deletions
16
include/queue_fn.php
Normal file
16
include/queue_fn.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
function update_queue_time($id) {
|
||||
logger('queue: requeue item ' . $id);
|
||||
q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d LIMIT 1",
|
||||
dbesc(datetime_convert()),
|
||||
intval($id)
|
||||
);
|
||||
}
|
||||
|
||||
function remove_queue_item($id) {
|
||||
logger('queue: remove queue item ' . $id);
|
||||
q("DELETE FROM `queue` WHERE `id` = %d LIMIT 1",
|
||||
intval($id)
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue