Skip to content

Commit 915f7c1

Browse files
author
Oleksii Korshenko
authored
MAGETWO-87838: Show maintenance IP-address without commas magento#13587
2 parents 600d194 + 8b50e6c commit 915f7c1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9393
if (!empty($addresses)) {
9494
$this->maintenanceMode->setAddresses(implode(',', $addresses));
9595
$output->writeln(
96-
'<info>Set exempt IP-addresses: ' . implode(', ', $this->maintenanceMode->getAddressInfo()) .
96+
'<info>Set exempt IP-addresses: ' . implode(' ', $this->maintenanceMode->getAddressInfo()) .
9797
'</info>'
9898
);
9999
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
5454
($this->maintenanceMode->isOn() ? 'active' : 'not active') . '</info>'
5555
);
5656
$addressInfo = $this->maintenanceMode->getAddressInfo();
57-
$addresses = implode(', ', $addressInfo);
57+
$addresses = implode(' ', $addressInfo);
5858
$output->writeln('<info>List of exempt IP-addresses: ' . ($addresses ? $addresses : 'none') . '</info>');
5959
}
6060
}

setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceAllowIpsCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function executeDataProvider()
7575
[
7676
['ip' => ['127.0.0.1', '127.0.0.2'], '--none' => false],
7777
[],
78-
'Set exempt IP-addresses: 127.0.0.1, 127.0.0.2' . PHP_EOL
78+
'Set exempt IP-addresses: 127.0.0.1 127.0.0.2' . PHP_EOL
7979
],
8080
[
8181
['--none' => true],

setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceStatusCommandTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function executeDataProvider()
5050
[
5151
[true, ['127.0.0.1', '127.0.0.2']],
5252
'Status: maintenance mode is active' . PHP_EOL .
53-
'List of exempt IP-addresses: 127.0.0.1, 127.0.0.2' . PHP_EOL
53+
'List of exempt IP-addresses: 127.0.0.1 127.0.0.2' . PHP_EOL
5454
],
5555
[
5656
[true, []],
@@ -63,7 +63,7 @@ public function executeDataProvider()
6363
[
6464
[false, ['127.0.0.1', '127.0.0.2']],
6565
'Status: maintenance mode is not active' . PHP_EOL .
66-
'List of exempt IP-addresses: 127.0.0.1, 127.0.0.2' . PHP_EOL
66+
'List of exempt IP-addresses: 127.0.0.1 127.0.0.2' . PHP_EOL
6767
],
6868
];
6969
}

0 commit comments

Comments
 (0)