Skip to content

Commit a00dcb5

Browse files
authored
Merge pull request #139 from magento-commerce/imported-magento-arcticfoxes-magento2-functional-testing-framework-875
[Imported] Fix encoding issue when secret key contains plus sign
2 parents 929296d + 80a7457 commit a00dcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ public function magentoCLI($command, $timeout = null, $arguments = null)
571571
$apiURL,
572572
[
573573
'token' => WebApiAuth::getAdminToken(),
574-
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => $command,
574+
getenv('MAGENTO_CLI_COMMAND_PARAMETER') => urlencode($command),
575575
'arguments' => $arguments,
576576
'timeout' => $timeout,
577577
],

0 commit comments

Comments
 (0)