add a few days of slop to the orphan finder to account for any lags in dir syncing.

This commit is contained in:
friendica 2014-06-01 17:22:04 -07:00
parent 1cb987d075
commit a84d2d0731

View File

@ -303,7 +303,7 @@ function mark_orphan_hubsxchans() {
return;
$r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d)
and hubloc_connected < utc_timestamp() - interval 30 day",
and hubloc_connected < utc_timestamp() - interval 36 day",
intval(HUBLOC_OFFLINE),
intval(HUBLOC_OFFLINE)
);