Skip to content

Commit 9b5ee7d

Browse files
committed
MC-20710: Add Elasticsearch configuration parameters to console
1 parent aeaaa58 commit 9b5ee7d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

app/code/Magento/Elasticsearch/Test/Unit/Setup/InstallConfigTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function testConfigure()
8585

8686
/**
8787
* @expectedException \Magento\Framework\Exception\InputException
88-
* @expectedExceptionMessage Connection to Elasticsearch cannot be established. Please check the configuration and try again.
88+
* @expectedExceptionMessage Connection to Elasticsearch cannot be established.
8989
*/
9090
public function testConfigureValidateFail()
9191
{

setup/src/Magento/Setup/Console/Command/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
233233
$importConfigCommand = $this->getApplication()->find(ConfigImportCommand::COMMAND_NAME);
234234
$arrayInput = new ArrayInput([]);
235235
$arrayInput->setInteractive($input->isInteractive());
236-
$importConfigCommand->run($arrayInput, $output);
236+
return $importConfigCommand->run($arrayInput, $output);
237237
}
238238

239239
/**

setup/src/Magento/Setup/Test/Unit/Model/SearchConfigTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,4 @@ public function installInputDataProvider()
127127
]
128128
];
129129
}
130-
131130
}

0 commit comments

Comments
 (0)