Laravel无法排队工作

时间:2015-08-11 12:21:06

标签: php laravel laravel-5 message-queue beanstalkd

当我尝试将作业推送到Laravel队列时,我反复收到以下错误:

Argument 1 passed to Illuminate\Queue\Jobs\Job::resolveAndFire() must be of the type array, null given, called in /home/vagrant/Code/project/vendor/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php on line 53 and defined

我不知道出了什么问题,但我猜这与我没有使用SerializesModel Trait的事实有关?当我尝试使用Serializes模型时,我只得到一个未定义的属性$ directory错误。

工作类是:

/**
 * Class StoreFile
 * @package App\Jobs
 */
class StoreFile extends Job implements SelfHandling, ShouldQueue
{
    use InteractsWithQueue;

    /**
     * @param string $directory
     * @param string $filename
     * @param UploadedFile $file
     */
    public function __construct($directory, $filename, $file)
    {
        $this->directory = $directory;
        $this->filename = $filename;
        $this->file = $file;
    }

    /**
     * @param FileSystem $storage
     * @return boolean
     */
    public function handle(FileSystem $storage)
    {
        $path = $this->directory . $this->filename;
        $storage->disk('s3')->put($path, $this->file);

        return true;
    }
}

更新 我使用以下方法从另一个班级排队:

$this->dispatch(new StoreFile($directory, rawurlencode($filename), file_get_contents($evidence)));

其中$证据是UploadedFile。我确定所有变量都设置好像我删除了ShouldQueue / InteractsWithQueue,作业执行得很好

1 个答案:

答案 0 :(得分:-4)

错误很容易解决。检查:可能是您将manualy测试消息添加到队列中。所以,这条消息可能会破坏你的代码,因为它有另一种结构。