Remove url caching, locking cleanup

This commit is contained in:
Michael 2020-08-06 18:53:45 +00:00
parent c0aebd2bd4
commit f09d9bc9cc
11 changed files with 55 additions and 73 deletions

View file

@ -822,7 +822,7 @@ class Processor
}
Logger::info('Updating profile', ['object' => $activity['object_id']]);
Contact::updateFromProbeByURL($activity['object_id'], true);
Contact::updateFromProbeByURL($activity['object_id']);
}
/**

View file

@ -679,7 +679,7 @@ class Receiver
return;
}
if (Contact::updateFromProbe($cid, '', true)) {
if (Contact::updateFromProbe($cid)) {
Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
}