For now we enforce HTTP/1.1, which *works*.
This commit is contained in:
Christoph M. Becker 2020-04-06 16:55:07 +02:00
Родитель 9d638cbb32
Коммит 3562ee4586
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -137,6 +137,9 @@ retry:
curl_setopt($ch, CURLOPT_USERAGENT, Config::getSdkUserAgentName());
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
// workaround for <https://github.com/microsoft/php-sdk-binary-tools/issues/69>
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
$ret = curl_exec($ch);
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);