Laravel将工作链接起来,因为数组不起作用。尝试分配非对象的属性

时间:2018-05-10 20:15:28

标签: laravel laravel-5 jobs

我正在尝试使用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)完成没有问题。

0 个答案:

没有答案