mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-17 20:11:27 +00:00
Fix MovePipeline jobs
This commit is contained in:
parent
a7efd20bbc
commit
0cba7d7d7d
4 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,7 @@ use Exception;
|
|||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||||
use DateTime;
|
||||
|
||||
class CleanupLegacyAccountMovePipeline implements ShouldQueue
|
||||
{
|
||||
|
|
|
@ -12,6 +12,7 @@ use GuzzleHttp\Pool;
|
|||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||||
use DateTime;
|
||||
|
||||
class MoveMigrateFollowersPipeline implements ShouldQueue
|
||||
{
|
||||
|
|
|
@ -8,6 +8,7 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
|||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Queue\Middleware\ThrottlesExceptions;
|
||||
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||||
use DateTime;
|
||||
|
||||
class ProcessMovePipeline implements ShouldQueue
|
||||
{
|
||||
|
|
|
@ -11,6 +11,7 @@ use GuzzleHttp\Pool;
|
|||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||||
use DateTime;
|
||||
|
||||
class UnfollowLegacyAccountMovePipeline implements ShouldQueue
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue