From 8f84792ed7813a56b85b4c9fa0ec20e57a95b334 Mon Sep 17 00:00:00 2001 From: Elliot Metsger Date: Thu, 22 Jul 2021 19:36:41 -0400 Subject: [PATCH] Continue instead of break. --- src/MigrateBatchExecutable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MigrateBatchExecutable.php b/src/MigrateBatchExecutable.php index a93edb9..c2db47e 100644 --- a/src/MigrateBatchExecutable.php +++ b/src/MigrateBatchExecutable.php @@ -314,7 +314,7 @@ public function processBatch(&$context) { } elseif ($status === MigrationInterface::RESULT_INCOMPLETE) { // Force iteration, due to memory or time. - break; + continue; } } catch (\Exception $e) {