| Index: infra_libs/httplib2_utils.py
|
| diff --git a/infra_libs/httplib2_utils.py b/infra_libs/httplib2_utils.py
|
| index a637bd7ff8aa752cdba0f5529f4ba9c92d1b2de4..1a48a90805af775c5bd5d01d0b235cfcc3049ab3 100644
|
| --- a/infra_libs/httplib2_utils.py
|
| +++ b/infra_libs/httplib2_utils.py
|
| @@ -206,7 +206,7 @@ class RetriableHttp(object):
|
| return getattr(self._http, name)
|
|
|
| def __setattr__(self, name, value):
|
| - if name in ('_http', '_max_tries', '_retrying_statuses_fn'):
|
| + if name in ('request', '_http', '_max_tries', '_retrying_statuses_fn'):
|
| self.__dict__[name] = value
|
| else:
|
| setattr(self._http, name, value)
|
|
|