This commit is contained in:
Victor Vazquez 2020-08-25 22:52:02 +00:00 коммит произвёл GitHub
Родитель 80f2c2f407
Коммит 760c645af0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 3 удалений

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

@ -786,9 +786,6 @@ std::unique_ptr<CurlSession::CurlConnection> CurlSession::GetCurlConnection(Requ
{
std::string const& host = request.GetHost();
// Double-check locking. Check if there is any available connection before locking mutex
auto& hostPoolFirstCheck = s_connectionPoolIndex[host];
if (hostPoolFirstCheck.size() > 0)
{
// Critical section. Needs to own s_connectionPoolMutex before executing
// Lock mutex to access connection pool. mutex is unlock as soon as lock is out of scope