hutch icon indicating copy to clipboard operation
hutch copied to clipboard

A system for processing messages from RabbitMQ.

Results 25 hutch issues
Sort by recently updated
recently updated
newest added

#### Summary Currently Hutch does not work with Rails 6 (rc1) out-of-the-box since the latter defaults to using Zeitwerk for autoloading paths. #### Steps to Reproduce 1. Generate a new...

On jruby-9.2.19.0 `gem install hutch` installs bunny as dependency, but on loading complains about missing `march_hare`: ``` (base) ~/m/org-api ❯❯❯ rails c LoadError: no such file to load -- march_hare...

There is a timeout (by default 15 minute) for consumer to process and `ack` / `nack` a message. https://www.rabbitmq.com/consumers.html#acknowledgement-timeout After this timeout if consumer still haven't done with the processing...

Currently the worker use the main broker connection which define on which exchange to subscribe to. Would be nice if we could specify the exchange on a per consumer basis....

I'm building a Rails Engine gem, which provides shared application code required by a number of microservices within our application. We're replacing our REST APIs which previously were used for...

Right now the [connection_params](https://github.com/gocardless/hutch/blob/master/lib/hutch/broker.rb#L265) enforces a singular `host` option for the Bunny connection. In an HA world we'd like this to be an array of rabbitmq hosts. Would you be...

Like: https://github.com/rails/rails/blob/master/activejob/lib/active_job/queue_adapters/sneakers_adapter.rb

This is a _feature request_: for config option `log_level`, always convert given input to a Logger constant before setting the value. The Config `log_level` setting currently does no resolving, but...

See https://github.com/mperham/sidekiq/pull/3302 for a JRuby-compatible "USR1" alternative.

Hey, We updated Hutch from 0.21 to 0.22.1, and we now have the following issue: ``` ruby > Hutch::Config.get(:mq_host) # => xyz.rmq.cloudamqp.com > Hutch.connected? # => nil > Hutch.connect #2016-10-10T22:14:44Z...