aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagImport.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 15:53:16 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-11 15:53:16 +0200
commit58fadbc9df3f8b735c04995919b6cf913ca6a977 (patch)
treebab121477c81ee68c1b0300464c2532407290222 /src/Wallabag/ImportBundle/Import/WallabagImport.php
parent04d5c60216eb4577fbf9846d10862a332d7656fd (diff)
downloadwallabag-58fadbc9df3f8b735c04995919b6cf913ca6a977.tar.gz
wallabag-58fadbc9df3f8b735c04995919b6cf913ca6a977.tar.zst
wallabag-58fadbc9df3f8b735c04995919b6cf913ca6a977.zip
Fix error on EntityManager clear
Introduced in the recent 2.5.5 release. Also updated deps.
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/WallabagImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/WallabagImport.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/WallabagImport.php b/src/Wallabag/ImportBundle/Import/WallabagImport.php
index a1cc085b..9cd3dcb8 100644
--- a/src/Wallabag/ImportBundle/Import/WallabagImport.php
+++ b/src/Wallabag/ImportBundle/Import/WallabagImport.php
@@ -172,7 +172,10 @@ abstract class WallabagImport extends AbstractImport
172 // flush every 20 entries 172 // flush every 20 entries
173 if (($i % 20) === 0) { 173 if (($i % 20) === 0) {
174 $this->em->flush(); 174 $this->em->flush();
175 $this->em->clear($entry); 175
176 // clear only affected entities
177 $this->em->clear(Entry::class);
178 $this->em->clear(Tag::class);
176 } 179 }
177 ++$i; 180 ++$i;
178 } 181 }