作为数组的链接作业不起作用。尝试分配非对象的属性

问题描述 投票:0回答:1

我正在尝试使用 Laravel 的 withChain 循环遍历多个需要一次运行 1 个服务器的服务器。第一个作业完成得很好,但我在链接作业中传递的数据给了我

尝试分配非对象的属性

当我注销初始发送的数据时,它看起来就像数组中构造的数据,所以我不确定我做错了什么。

$new_jobs_array = [];
foreach ($this->wasRequest->nodes->sortByDesc('pivot.node_type') as $node) {
        if ($node->pivot->node_type != 'WAS_DMGR')
        {
            $snode        = strtolower($node->hostname);
            $shortname    = strtok($snode, '.');
            $fileName     = strtolower($mnemonic).'_'.$shortname.'_'.$reqId.'.json';
            $sourceJsonPath = base_path() . "/json/was/" . $fileName;

            $new_job = 'new BootStrapWasNode('. $node .', '. $this->wasRequest .', '.$sourceJsonPath.')';

            array_push($new_jobs_array, $new_job);
        } else {
            $dmgr_node = $node;
        }
    }
    //Log::info($new_jobs_array);
    $dmgr_node_sname    = strtok($this->wasRequest->nodes->where('pivot.node_type', 'WAS_DMGR')->pluck('hostname')[0], '.');
    $fileName     = strtolower($mnemonic).'_'.$dmgr_node_sname.'_'.$reqId.'.json';
    $sourceJsonPath = base_path() . "/json/was/" . $fileName;

    $this->wasRequest->status = 'Bootstrapping Nodes';
    $this->wasRequest->save();
    //Log::info("DMGR-------------------".$dmgr_node.", ".$this->wasRequest.", ".$sourceJsonPath);
    BootStrapWasNode::withChain($new_jobs_array)->dispatch($dmgr_node, $this->wasRequest, $sourceJsonPath);

如果需要,我可以附加日志视图,但每个节点都有很多数据。问题在于 $new_nodes_array,初始调度($dmgr_node,$this->wasRequest,$sourceJsonPath) 毫无问题地完成。

php laravel laravel-5 jobs
1个回答
0
投票

能够找出问题所在。 此行不正确

$new_job = 'new BootStrapWasNode('. $node .', '. $this->wasRequest .','.$sourceJsonPath.')';

应该是

$new_job = new BootStrapWasNode($node, $this->wasRequest, $sourceJsonPath);
© www.soinside.com 2019 - 2024. All rights reserved.