mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Merge pull request #986 from pixelfed/frontend-ui-refactor
Update AP deliver job
This commit is contained in:
commit
2cfacc8dfd
1 changed files with 3 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Jobs\StatusPipeline;
|
||||
|
||||
use Cache;
|
||||
use Cache, Log;
|
||||
use App\Status;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
|
@ -94,8 +94,10 @@ class StatusActivityPubDeliver implements ShouldQueue
|
|||
$pool = new Pool($client, $requests, [
|
||||
'concurrency' => config('pixelfed.ap_delivery_concurrency'),
|
||||
'fulfilled' => function ($response, $index) {
|
||||
Log::info('AP:deliver:success - ' . $response);
|
||||
},
|
||||
'rejected' => function ($reason, $index) {
|
||||
Log::info('AP:deliver:rejected - ' . $reason);
|
||||
}
|
||||
]);
|
||||
$promise = $pool->promise();
|
||||
|
|
Loading…
Reference in a new issue