Skip to content

Commit 6868d79

Browse files
committed
Fix encoding issue when secret key contains plus sign
1 parent b2a23dc commit 6868d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Module/MagentoWebDriver.php

Lines changed: 1 addition & 1 deletion
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)