Skip to content

Commit

Permalink
Fix create bulk directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane MEAUDRE committed Mar 25, 2024
1 parent ef5f35b commit 885e3ec
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions api/src/Command/ImportDeltaDataCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
* STEP 2: import data
*/
if (is_array($bulk)) {
dump($bulk);
dump($bulk); die();
foreach ($bulk as $document) {
$this->dsoRepository->insertDocument($document);
// $this->dsoRepository->insertDocument($document);
}

}
Expand Down Expand Up @@ -170,7 +170,4 @@ private function buildBulkData(array $data)

return $bulkData;
}



}

0 comments on commit 885e3ec

Please sign in to comment.