File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
framework/Magento/TestFramework Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,4 @@ return [
23
23
'amqp-port' => '5672',
24
24
'amqp-user' => 'guest',
25
25
'amqp-password' => 'guest',
26
- 'use-secure' => '0',
27
- 'use-secure-admin' => '0',
28
26
];
Original file line number Diff line number Diff line change @@ -276,6 +276,8 @@ protected function getInstallConfig()
276
276
if (null === $ this ->installConfig ) {
277
277
// phpcs:ignore Magento2.Security.IncludeFile
278
278
$ this ->installConfig = include $ this ->installConfigFile ;
279
+ $ this ->installConfig ['use-secure ' ] = '0 ' ;
280
+ $ this ->installConfig ['use-secure-admin ' ] = '0 ' ;
279
281
}
280
282
return $ this ->installConfig ;
281
283
}
@@ -679,7 +681,7 @@ private function getInstallCliParams()
679
681
$ params ['magento-init-params ' ] = $ this ->getInitParamsQuery ();
680
682
$ result = [];
681
683
foreach ($ params as $ key => $ value ) {
682
- if (strlen ($ value ) > 0 ) {
684
+ if (isset ($ value )) {
683
685
$ result ["-- {$ key }=%s " ] = $ value ;
684
686
}
685
687
}
You can’t perform that action at this time.
0 commit comments