Fixed problem of failing researchAllParts

This maybe should be revisited in the future, but for now this fix should work
This commit is contained in:
Jan Böhmer 2025-09-21 19:47:49 +02:00
parent 1d38c50abc
commit 4c28871283

View file

@ -553,7 +553,7 @@ class BulkInfoProviderImportController extends AbstractController
// Properly manage entity manager memory without losing state
$jobId = $job->getId();
$this->entityManager->clear();
//$this->entityManager->clear(); //TODO: This seems to cause problems with the user relation, when trying to flush later
$job = $this->entityManager->find(BulkInfoProviderImportJob::class, $jobId);
}