Update AP deliver job

This commit is contained in:
Daniel Supernault 2019-03-07 23:25:05 -07:00
parent d7d47ca132
commit c817d4cfda
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 1 deletions

View File

@ -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();