| Index: client/third_party/infra_libs/ts_mon/common/monitors.py
|
| diff --git a/client/third_party/infra_libs/ts_mon/common/monitors.py b/client/third_party/infra_libs/ts_mon/common/monitors.py
|
| index dfb99ffad7d88adef7532b8edf3b2e4b3b54e9d8..cb095fac2316d67b23f9c20e64c5a0ba4808d48f 100644
|
| --- a/client/third_party/infra_libs/ts_mon/common/monitors.py
|
| +++ b/client/third_party/infra_libs/ts_mon/common/monitors.py
|
| @@ -91,12 +91,12 @@ class HttpsMonitor(Monitor):
|
| 'https://www.googleapis.com/auth/prodxmon'
|
| ]
|
|
|
| - def __init__(self, endpoint, credentials_file_path, http=None):
|
| + def __init__(self, endpoint, credentials_file_path, http=None, ca_certs=None):
|
| self._endpoint = endpoint
|
| credentials = self._load_credentials(credentials_file_path)
|
| if http is None:
|
| http = httplib2_utils.RetriableHttp(
|
| - httplib2_utils.InstrumentedHttp('acq-mon-api'))
|
| + httplib2_utils.InstrumentedHttp('acq-mon-api', ca_certs=ca_certs))
|
| self._http = credentials.authorize(http)
|
|
|
| def encodeToJson(self, metric_pb):
|
|
|