Changes after code review
This commit is contained in:
parent
d9aee0b3ea
commit
e2896b449b
1 changed files with 3 additions and 3 deletions
|
@ -535,17 +535,17 @@ class Processor
|
||||||
Logger::notice('The activity is gone. We will not spawn a worker. The queue entry will be deleted', ['parent' => $activity['reply-to-id']]);
|
Logger::notice('The activity is gone. We will not spawn a worker. The queue entry will be deleted', ['parent' => $activity['reply-to-id']]);
|
||||||
if ($in_background) {
|
if ($in_background) {
|
||||||
// fetching in background is done for all activities where we have got the conversation
|
// fetching in background is done for all activities where we have got the conversation
|
||||||
// There we only delete the single activity and not thr whole thread since we can store the
|
// There we only delete the single activity and not the whole thread since we can store the
|
||||||
// other posts in the thread even with missing posts.
|
// other posts in the thread even with missing posts.
|
||||||
Queue::remove($activity);
|
Queue::remove($activity);
|
||||||
} elseif (!empty($activity['entry-id'])) {
|
} elseif (!empty($activity['entry-id'])) {
|
||||||
Queue::deleteById($activity['entry-id']);
|
Queue::deleteById($activity['entry-id']);
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
} elseif (!$in_background) {
|
|
||||||
Logger::notice('Recursion level is too high.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
|
|
||||||
} elseif ($in_background) {
|
} elseif ($in_background) {
|
||||||
Logger::notice('Fetching is done in the background.', ['parent' => $activity['reply-to-id']]);
|
Logger::notice('Fetching is done in the background.', ['parent' => $activity['reply-to-id']]);
|
||||||
|
} else {
|
||||||
|
Logger::notice('Recursion level is too high.', ['parent' => $activity['reply-to-id'], 'recursion-depth' => $recursion_depth]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Fetch::hasWorker($activity['reply-to-id'])) {
|
if (!Fetch::hasWorker($activity['reply-to-id'])) {
|
||||||
|
|
Loading…
Reference in a new issue