Skip to content

Instantly share code, notes, and snippets.

View justmedude's full-sized avatar

Vikram Adukia justmedude

View GitHub Profile
@justmedude
justmedude / hermes-crash-10.6.8
Created March 2, 2012 17:34
hermes crash on 10.6.8 when clicking snooze button
Process: Hermes [78777]
Path: /Applications/Hermes.app/Contents/MacOS/Hermes
Identifier: com.alexcrichton.Hermes
Version: 1.0.20 (200)
Code Type: X86-64 (Native)
Parent Process: launchd [225]
Date/Time: 2012-03-02 09:32:23.063 -0800
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6
@justmedude
justmedude / gist:2402014
Created April 16, 2012 22:11
fix for httplib2conn.py
diff --git a/object_storage/transport/httplib2conn.py b/object_storage/transport/httplib2conn.py
index faad551..b8f15b0 100755
--- a/object_storage/transport/httplib2conn.py
+++ b/object_storage/transport/httplib2conn.py
@@ -28,7 +28,8 @@ class AuthenticatedConnection(BaseAuthenticatedConnection):
httplib2.debuglevel=4
self.token = None
self.storage_url = None
- self.http = httplib2.Http(disable_ssl_certificate_validation=True)
+ self.http = httplib2.Http()