aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagImport.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-13 14:46:31 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-18 14:48:18 +0200
commitdc12084d933dc4981a6ff489622845053d4914b3 (patch)
tree9747cf4e425db3e7c7e5d0bbf79b0edb5c3f14fa /src/Wallabag/ImportBundle/Import/WallabagImport.php
parent0907a72c6477cbe0f25a25563a9c37c43a28d5ad (diff)
downloadwallabag-dc12084d933dc4981a6ff489622845053d4914b3.tar.gz
wallabag-dc12084d933dc4981a6ff489622845053d4914b3.tar.zst
wallabag-dc12084d933dc4981a6ff489622845053d4914b3.zip
Add doctrine clear after flush, thanks to @BitOne talk at Symfony Live
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/WallabagImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/WallabagImport.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Import/WallabagImport.php b/src/Wallabag/ImportBundle/Import/WallabagImport.php
index d65bc530..b265f9f1 100644
--- a/src/Wallabag/ImportBundle/Import/WallabagImport.php
+++ b/src/Wallabag/ImportBundle/Import/WallabagImport.php
@@ -185,6 +185,7 @@ abstract class WallabagImport implements ImportInterface
185 // flush every 20 entries 185 // flush every 20 entries
186 if (($i % 20) === 0) { 186 if (($i % 20) === 0) {
187 $this->em->flush(); 187 $this->em->flush();
188 $this->em->clear();
188 } 189 }
189 ++$i; 190 ++$i;
190 } 191 }