This commit is contained in:
2019-05-30 23:29:49 -05:00
parent 565c84ba71
commit e5247170aa

View File

@@ -120,9 +120,9 @@ class GetStructuresCommand extends Command
//For each structure we retrieve dispatch a job to process it. //For each structure we retrieve dispatch a job to process it.
foreach($structures as $structure) { foreach($structures as $structure) {
$job = new JobProcessStructure; $job = new JobProcessStructure;
$job->charId; $job->charId = $charId;
$job->corpId; $job->corpId = $corpId;
$job->structure; $job->structure = $structure;
ProcessStructureJob::dispatch($job)->onQueue('structures'); ProcessStructureJob::dispatch($job)->onQueue('structures');
} }