You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which version of amqplib are you using?
amqplib==1.0.2
Have you checked to see if there is a newer version in the "Featured
Downloads" section of the front page of this project?
no
Which version of Python?
2.7.8
In my logs I see some occurences of:
Exception AttributeError: "'NoneType' object has no attribute 'SHUT_RDWR'" in
<bound method TCPTransport.__del__ of
<amqplib.client_0_8.transport.TCPTransport object at 0x7feff33a2dd0>> ignored
I guess that is because
def close(self):
if self.sock is not None:
self._shutdown_transport()
# Call shutdown first to make sure that pending messages
# reach the AMQP broker if the program exits after
# calling this method.
self.sock.shutdown(socket.SHUT_RDWR)
in a situation where Python is shutting down and the socket module already is
empty ... or something like that.
This is not a big deal for me - I just wanted to let you know and share the
possible hint of what the root cause is.
Original issue reported on code.google.com by [email protected] on 19 Apr 2015 at 4:41
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 19 Apr 2015 at 4:41The text was updated successfully, but these errors were encountered: