1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

update to warcio>=1.3.4

http adapter: use same defaults for live and remote
This commit is contained in:
Ilya Kreymer 2017-07-03 09:01:21 -07:00
parent f3487a1922
commit 41b3789412
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@ from requests.adapters import HTTPAdapter
class DefaultAdapters(object):
live_adapter = HTTPAdapter(max_retries=3)
remote_adapter = HTTPAdapter(pool_connections=8, pool_maxsize=8, pool_block=True)
remote_adapter = HTTPAdapter(max_retries=3)

View File

@ -1,5 +1,5 @@
six
warcio==1.3.3
warcio>=1.3.4
chardet
requests
redis