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
try authenticating with bad credentials, and you'll get a hang until php
times out. This is because amqp does not specify how to handle a failed
authentication, and servers tend to just close the connection. php-amqplib
doesn't consider that possibility. A patch to fix is attached. You don't
get an error that indicates auth failure (well, how can you really?) but at
least you don't have the php process hang until the 30 second timeout is hit.
Original issue reported on code.google.com by [email protected] on 29 Oct 2009 at 10:56
Actually, remove the check for timed_out. That breaks consumers. For the
authentication failure, you only need to check for eof and break out of the
loop.
Original issue reported on code.google.com by
[email protected]
on 29 Oct 2009 at 10:56Attachments:
The text was updated successfully, but these errors were encountered: