From 0608ade6d3bdb3ef1c744960c44ed4f922510080 Mon Sep 17 00:00:00 2001 From: Romuald Juchnowicz-Bierbasz Date: Fri, 10 May 2019 14:14:33 +0200 Subject: [PATCH] Fix name --- src/galaxy/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/galaxy/http.py b/src/galaxy/http.py index 1e6ec82..92dc293 100644 --- a/src/galaxy/http.py +++ b/src/galaxy/http.py @@ -10,7 +10,7 @@ from galaxy.api.errors import ( BackendTimeout, BackendNotAvailable, BackendError, NetworkError, UnknownError ) -class AuthenticatedHttpClient: +class HttpClient: def __init__(self, limit=20, timeout=aiohttp.ClientTimeout(total=60)): ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) ssl_context.load_verify_locations(certifi.where())