1
0
Fork 0

Merge pull request #986 from pixelfed/frontend-ui-refactor

Update AP deliver job
This commit is contained in:
daniel 2019-03-07 23:25:35 -07:00 committed by GitHub
commit 2cfacc8dfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();