Skip to content

Commit 064fcee

Browse files
committed
MCP-966: Parallel Indexation for Catalog Permission[Stabilize PR]
1 parent fb81983 commit 064fcee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Indexer/Console/Command/IndexerShowDimensionsModeCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,14 @@ protected function execute(InputInterface $input, OutputInterface $output)
9999
$output->writeln(sprintf('%-50s ', $indexer->getTitle() . ':') . $mode);
100100
}
101101
} catch (\Exception $e) {
102-
/** @noinspection PhpUndefinedFieldInspection */
102+
// @codingStandardsIgnoreStart
103103
if (!in_array($indexerId, $this->optionalIndexers)) {
104104
$output->writeln('"' . $indexer->getTitle() . '" indexer process unknown error:' . PHP_EOL);
105105
$output->writeln($e->getMessage() . PHP_EOL);
106106
// we must have an exit code higher than zero to indicate something was wrong
107107
$returnValue = Cli::RETURN_FAILURE;
108108
}
109+
// @codingStandardsIgnoreEnd
109110
}
110111

111112
return $returnValue;

0 commit comments

Comments
 (0)