rust-amqp
rust-amqp copied to clipboard
AMQP client in pure rust. Corresponds to rabbitmq spec.
code build issue.
exception on session close: thread 'main' panicked at 'called `Option::unwrap()` on a `None` value',
I do my first steps with Rust and Rabbitmq. I try to implement a simple RPC client like described at https://www.rabbitmq.com/tutorials/tutorial-six-python.html So far it works but it panic's at the...
Not really sure where the problem may be, you can find the connection code below. All I'm doing is running the program, seeing it connect in RabbitMQ's Management, leave it...
I could see Channel::read Will block until it reads a frame, other than `basic.deliver` or maybe get "Error reading packet from channel". I need some way to release the block...
There are many panic-points in rust-amqp and most of them are undocumented. Applications can easily blow up on those, so there is work in progress to remove those in favor...
The version of openssl that was previously used had numerous security issues, and did not support the latest versions of the upstream openssl package. I wasn't sure what to do...
From the openssl rust docs: > OpenSSL's default configuration is highly insecure. This connector manages the OpenSSL structures, configuring cipher suites, session options, hostname verification, and more. > > OpenSSL's...
### open questions Heartbeats are great, and are working as of this PR; however, until we implement an auto-reconnect algorithm, heartbeats are not super effective. **Do we want to include...
Naturally, this causes some trouble for applications that need both `amqp` and want to talk to HTTPS as well.