mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
Deprecated parts removed
This commit is contained in:
parent
dd7dc77a10
commit
12994aaccd
7 changed files with 118 additions and 232 deletions
|
@ -49,19 +49,21 @@ function twitter_sync_run($argv, $argc){
|
|||
$mode = intval($argv[1]);
|
||||
$uid = intval($argv[2]);
|
||||
|
||||
/// @todo Replace it with "App::is_already_running" in the next release
|
||||
$lockpath = get_lockpath();
|
||||
if ($lockpath != '') {
|
||||
$pidfile = new pidfile($lockpath, 'twitter_sync-'.$mode.'-'.$uid);
|
||||
if ($pidfile->is_already_running()) {
|
||||
logger("Already running");
|
||||
if ($pidfile->running_time() > 9*60) {
|
||||
$pidfile->kill();
|
||||
logger("killed stale process");
|
||||
// Calling a new instance
|
||||
proc_run('php','addon/twitter/twitter_sync.php', $mode, $uid);
|
||||
// This is deprecated with the worker
|
||||
if (function_exists("get_lockpath")) {
|
||||
$lockpath = get_lockpath();
|
||||
if ($lockpath != '') {
|
||||
$pidfile = new pidfile($lockpath, 'twitter_sync-'.$mode.'-'.$uid);
|
||||
if ($pidfile->is_already_running()) {
|
||||
logger("Already running");
|
||||
if ($pidfile->running_time() > 9*60) {
|
||||
$pidfile->kill();
|
||||
logger("killed stale process");
|
||||
// Calling a new instance
|
||||
proc_run('php','addon/twitter/twitter_sync.php', $mode, $uid);
|
||||
}
|
||||
exit;
|
||||
}
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue