diff options
author | Leif Johansson <leifj@sunet.se> | 2012-10-23 23:47:30 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-10-23 23:47:30 +0200 |
commit | 3e57ae213bf08bd332dc06fac7e9559d5a38e0bf (patch) | |
tree | 4f1cc3ef64d4741f70cbd6b54af1bf2eea1a0db4 /meetingtools/ac | |
parent | 0e91dc1bdbb2f9b78bed0d3746a3e9e0f5675e75 (diff) |
temporarily turn off caching for httplib2
Diffstat (limited to 'meetingtools/ac')
-rw-r--r-- | meetingtools/ac/api.py | 3 |
1 files changed, 2 insertions, 1 deletions
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") |