Skip to content

Instantly share code, notes, and snippets.

@arreyder
Created May 19, 2011 15:48
Show Gist options
  • Save arreyder/981079 to your computer and use it in GitHub Desktop.
Save arreyder/981079 to your computer and use it in GitHub Desktop.
2011-05-19_15:46:45.59339 2011-05-19 15:46:45+0000 [-] Unhandled error in Deferred:
2011-05-19_15:46:45.59373 2011-05-19 15:46:45+0000 [-] Unhandled Error
2011-05-19_15:46:45.59374 Traceback (most recent call last):
2011-05-19_15:46:45.59375 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 879, in gotResult
2011-05-19_15:46:45.59376 _inlineCallbacks(r, g, deferred)
2011-05-19_15:46:45.59376 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 869, in _inlineCallbacks
2011-05-19_15:46:45.59377 deferred.errback()
2011-05-19_15:46:45.59378 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 307, in errback
2011-05-19_15:46:45.59379 self._startRunCallbacks(fail)
2011-05-19_15:46:45.59380 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 354, in _startRunCallbacks
2011-05-19_15:46:45.59380 self._runCallbacks()
2011-05-19_15:46:45.59381 --- <exception caught here> ---
2011-05-19_15:46:45.59382 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 371, in _runCallbacks
2011-05-19_15:46:45.59383 self.result = callback(self.result, *args, **kw)
2011-05-19_15:46:45.59383 File "/data/ck/cloudkick/thrift/hub/HubService.py", line 455, in write_results_exception_list_nodes
2011-05-19_15:46:45.59384 error.raiseException()
2011-05-19_15:46:45.59385 File "/usr/lib/python2.6/dist-packages/twisted/internet/defer.py", line 821, in _inlineCallbacks
2011-05-19_15:46:45.59386 result = result.throwExceptionIntoGenerator(g)
2011-05-19_15:46:45.59391 File "/usr/lib/python2.6/dist-packages/twisted/python/failure.py", line 338, in throwExceptionIntoGenerator
2011-05-19_15:46:45.59391 return g.throw(self.type, self.value, self.tb)
2011-05-19_15:46:45.59392 File "/data/ck/cloudkick/services/hub.py", line 69, in list_nodes
2011-05-19_15:46:45.59393 provider, async = yield threads.deferToThread(get_implementation, provider_creds)
2011-05-19_15:46:45.59394 File "/usr/lib/python2.6/dist-packages/twisted/python/threadpool.py", line 210, in _worker
2011-05-19_15:46:45.59394 result = context.call(ctx, function, *args, **kwargs)
2011-05-19_15:46:45.59395 File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 59, in callWithContext
2011-05-19_15:46:45.59396 return self.currentContext().callWithContext(ctx, func, *args, **kw)
2011-05-19_15:46:45.59397 File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 37, in callWithContext
2011-05-19_15:46:45.59398 return func(*args,**kw)
2011-05-19_15:46:45.59398 File "/data/ck/cloudkick/providers/base.py", line 41, in get_implementation
2011-05-19_15:46:45.59399 return RackspaceUSProvider(provider_creds), ASYNC
2011-05-19_15:46:45.59400 File "/data/ck/cloudkick/providers/rackspacelc.py", line 7, in __init__
2011-05-19_15:46:45.59401 self._init_via_key_secret()
2011-05-19_15:46:45.59403 File "/data/ck/cloudkick/providers/lcbase/provider.py", line 51, in _init_via_key_secret
2011-05-19_15:46:45.59403 self.driver = self.drive_impl(self.credentials.key, self.credentials.secret)
2011-05-19_15:46:45.59404 File "/data/ck/cloudkick/extern/libcloud/base.py", line 693, in __init__
2011-05-19_15:46:45.59405 self.connection.connect()
2011-05-19_15:46:45.59406 File "/data/ck/cloudkick/extern/libcloud/base.py", line 490, in connect
2011-05-19_15:46:45.59407 host = host or self.host
2011-05-19_15:46:45.59407 File "/data/ck/cloudkick/extern/libcloud/drivers/rackspace.py", line 117, in host
2011-05-19_15:46:45.59408 'X-Auth-Key': self.key
2011-05-19_15:46:45.59409 File "/usr/lib/python2.6/httplib.py", line 910, in request
2011-05-19_15:46:45.59410 self._send_request(method, url, body, headers)
2011-05-19_15:46:45.59410 File "/usr/lib/python2.6/httplib.py", line 947, in _send_request
2011-05-19_15:46:45.59411 self.endheaders()
2011-05-19_15:46:45.59412 File "/usr/lib/python2.6/httplib.py", line 904, in endheaders
2011-05-19_15:46:45.59413 self._send_output()
2011-05-19_15:46:45.59413 File "/usr/lib/python2.6/httplib.py", line 776, in _send_output
2011-05-19_15:46:45.59414 self.send(msg)
2011-05-19_15:46:45.59415 File "/usr/lib/python2.6/httplib.py", line 735, in send
2011-05-19_15:46:45.59416 self.connect()
2011-05-19_15:46:45.59416 File "/data/ck/cloudkick/extern/libcloud/httplib_ssl.py", line 86, in connect
2011-05-19_15:46:45.59418 return httplib.HTTPSConnection.connect(self)
2011-05-19_15:46:45.59419 File "/usr/lib/python2.6/httplib.py", line 1112, in connect
2011-05-19_15:46:45.59420 self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file)
2011-05-19_15:46:45.59421 File "/usr/lib/python2.6/ssl.py", line 350, in wrap_socket
2011-05-19_15:46:45.59421 suppress_ragged_eofs=suppress_ragged_eofs)
2011-05-19_15:46:45.59422 File "/usr/lib/python2.6/ssl.py", line 118, in __init__
2011-05-19_15:46:45.59423 self.do_handshake()
2011-05-19_15:46:45.59424 File "/usr/lib/python2.6/ssl.py", line 293, in do_handshake
2011-05-19_15:46:45.59424 self._sslobj.do_handshake()
2011-05-19_15:46:45.59425 ssl.SSLError: [Errno 8] _ssl.c:480: EOF occurred in violation of protocol
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment