Skip to content
Snippets Groups Projects
Commit 43112167 authored by Adriano Cori's avatar Adriano Cori Committed by Adriano Cori
Browse files

Issue #2943264 by aronne: Fixed missing "handler" configuration property while...

Issue #2943264 by aronne: Fixed missing "handler" configuration property while creating Guzzle Client for commands in blacklist or whitelist
parent 72e7f40a
No related branches found
No related tags found
No related merge requests found
......@@ -175,6 +175,7 @@ class HttpClient implements HttpClientInterface {
(!empty($cmds['whitelist']) && !in_array($commandName, $cmds['whitelist']))
) {
$config = $api['orig']['config'];
$config['handler'] = $this->getClientConfig()['handler'];
}
$this->client = $this->createGuzzleClient($config);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment