From 4c288712832e12c8f53ae80b7cf75410d7ac3b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 21 Sep 2025 19:47:49 +0200 Subject: [PATCH] Fixed problem of failing researchAllParts This maybe should be revisited in the future, but for now this fix should work --- src/Controller/BulkInfoProviderImportController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/BulkInfoProviderImportController.php b/src/Controller/BulkInfoProviderImportController.php index 8ee8444b..3452b370 100644 --- a/src/Controller/BulkInfoProviderImportController.php +++ b/src/Controller/BulkInfoProviderImportController.php @@ -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); }