mirror of
https://github.com/webrecorder/pywb.git
synced 2025-04-03 20:45:44 +02:00
8 lines
170 B
Python
8 lines
170 B
Python
from requests.adapters import HTTPAdapter
|
|
|
|
class DefaultAdapters(object):
|
|
live_adapter = HTTPAdapter(max_retries=3)
|
|
remote_adapter = HTTPAdapter(max_retries=3)
|
|
|
|
|