From 3e57ae213bf08bd332dc06fac7e9559d5a38e0bf Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Tue, 23 Oct 2012 23:47:30 +0200 Subject: temporarily turn off caching for httplib2 --- meetingtools/ac/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meetingtools/ac/api.py b/meetingtools/ac/api.py index 5594d75..f416cf4 100644 --- a/meetingtools/ac/api.py +++ b/meetingtools/ac/api.py @@ -143,7 +143,8 @@ class ACPClient(): u.append('%s=%s' % (k,quote_plus(value.encode("utf-8")))) url = self.url + '?' + '&'.join(u) - cache = ACPClient.CacheWrapper(get_cache('default')) + #cache = ACPClient.CacheWrapper(get_cache('default')) + cache = None h = httplib2.Http(cache,disable_ssl_certificate_validation=True); logging.debug(url) resp, content = h.request(url, "GET") -- cgit v1.1