Skip to content

Commit

Permalink
Merge branch '1.1' into 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
weisswurstkanone committed Sep 1, 2021
2 parents 1a229f0 + eb4f35d commit d91253c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Processing/ImportProcessingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function processQueueItem(int $id)
$data = json_decode($queueItem['data'], true);
$this->processElement($configName, $data, $resolver, $mapping);
} elseif ($queueItem['jobType'] === self::JOB_TYPE_CLEANUP) {
$this->cleanupElement($configName, $queueItem['data'], $resolver, $config['interpreterConfig']['cleanup'] ?? []);
$this->cleanupElement($configName, $queueItem['data'], $resolver, $config['processingConfig']['cleanup'] ?? []);
} else {
throw new InvalidConfigurationException('Unknown job type ' . $queueItem['jobType']);
}
Expand Down

0 comments on commit d91253c

Please sign in to comment.