-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: auto reconnect in case broker fail #29
Comments
Thanks for reporting. You should not have to restart deno to reconnect, but rather create a new connection and run through your setup flow. As mentioned in a similar feature request here: amqp-node/amqplib#25, reconnecting a client to the broker involves more things than just setting up the AMQP Connection. Here is the
|
This code does not seem to handle the error-case where the queue does not exist. with: const queueName = "nonexistingqueue";
The line I've been stumped for a while figuring out why this library seems to crash my server in one way or another. 😃 |
I hope to you can implement this feature because when the broker dies, we need to restart the deno to get it to reconnect, which is unacceptable for event handling.
The text was updated successfully, but these errors were encountered: