Merge pull request #6506 from spycrab/updater_timeout

Updater: Increase request timeout to 30s
This commit is contained in:
Pierre Bourdon 2018-03-23 22:56:35 +01:00 committed by GitHub
commit cd4881d74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#include <OptionParser.h>
#include <algorithm>
#include <array>
#include <chrono>
#include <cstdio>
#include <ed25519/ed25519.h>
#include <mbedtls/base64.h>
@ -471,7 +472,7 @@ Manifest::Hash ComputeHash(const std::string& contents)
bool DownloadContent(const std::vector<Manifest::Hash>& to_download,
const std::string& content_base_url, const std::string& temp_path)
{
Common::HttpRequest req;
Common::HttpRequest req(std::chrono::seconds(30));
for (const auto& h : to_download)
{
std::string hash_filename = HexEncode(h.data(), h.size());