rack-rabbit icon indicating copy to clipboard operation
rack-rabbit copied to clipboard

A Unicorn-style forking server for hosting rabbitMQ consumers as load balanced Rack apps

Results 6 rack-rabbit issues
Sort by recently updated
recently updated
newest added

`RackRabbit::Subscriber#subscribe` uses deprecated bunny`s option `:ack`. This causes bunny to output: ``` [DEPRECATION] `:ack` is deprecated. Please use `:manual_ack` instead. [DEPRECATION] `:ack` is deprecated. Please use `:manual_ack` instead. ``` Pull...

Am I right thinking that `RR::Client#request` https://github.com/jakesgordon/rack-rabbit/blob/0fc9fb8dc0dff3837d3376bf2adf7505be6a9981/lib/rack-rabbit/client.rb#L50 does not close channel after it received response? So the temporary queue won't be auto-deleted, as the connection (channel) is still open.

Given rack app where `rack-rabbit` is used only as a client library `RR`. When I call `RR.get` it tries to connect to default localhost RabbitMQ. Is there any shortcut to...

Got this in server logs: ``` [DEPRECATION] `:ack` is deprecated. Please use `:manual_ack` instead. ```

ruby 2.2.1 Playing with rack-rabbit. Tried to send request: ``` $DEBUG = true client = RR.new(host: '172.28.128.17', port: 5672, adapter: :bunny) client.request('my.topic', '/ping', '', { method: :GET }) ``` Got...

Bumps [rack](https://github.com/rack/rack) from 1.6.4 to 1.6.13. Commits 47a1fd7 bump version b8dc520 Handle case where session id key is requested but it is missing 698a060 Merge pull request #1462 from jeremyevans/sessionid-to_s...

dependencies