From 14f68968c403e55a9e7646b867d5ecb004995216 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 Dec 2025 12:27:17 +0200 Subject: [PATCH] Comment out pause statement --- .../Transmogrify/src/Command/TransmogrifyCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/plugins/Transmogrify/src/Command/TransmogrifyCommand.php b/app/plugins/Transmogrify/src/Command/TransmogrifyCommand.php index 542685902..9d08a4fbe 100644 --- a/app/plugins/Transmogrify/src/Command/TransmogrifyCommand.php +++ b/app/plugins/Transmogrify/src/Command/TransmogrifyCommand.php @@ -455,8 +455,8 @@ public function execute(Arguments $args, ConsoleIo $io): int $this->cache['rejected'][$outboundQualifiedTableName][$row['id']] = $row; } $this->cmdPrinter->warning("Skipping $t record " . (string)$rowIdLabel . " due to invalid foreign key: " . $e->getMessage()); - $this->cmdPrinter->pause(); - } catch(\InvalidArgumentException $e) { +// $this->cmdPrinter->pause(); + } catch (\InvalidArgumentException $e) { // If we can't find a value for mapping we skip the record // (ie: mapLegacyFieldNames basically requires a successful mapping) $this->cache['warns'] += 1; @@ -465,8 +465,8 @@ public function execute(Arguments $args, ConsoleIo $io): int $this->cache['rejected'][$outboundQualifiedTableName][$row['id']] = $row; } $this->cmdPrinter->warning("Skipping $t record " . (string)$rowIdLabel . ": " . $e->getMessage()); - $this->cmdPrinter->pause(); - } catch(\Exception $e) { +// $this->cmdPrinter->pause(); + } catch (\Exception $e) { $this->cache['error'] += 1; if (isset($row['id'])) { $this->cache['rejected'][$outboundQualifiedTableName][$row['id']] = $row;