msgpack-rpc / msgpack-rpc-python

MessagePack RPC implementation for Python
205 stars 72 forks source link

I get an exception under heavy load #13

Closed pykler closed 8 years ago

pykler commented 8 years ago

When the server is heavily in use I occasionally get this error:

'NoneType' object has no attribute 'send_message'

Any ideas?

full stack trace:

  File "requests_service/client.py", line 30, in _client_call
    return client.call(method, args, kwargs)
  File "msgpackrpc/session.py", line 41, in call
    return self.send_request(method, args).get()
  File "msgpackrpc/session.py", line 51, in send_request
    self._transport.send_message([message.REQUEST, msgid, method, args])
AttributeError: 'NoneType' object has no attribute 'send_message'
pykler commented 8 years ago

this was a red herring, I will recheck and re-open if necessary.