rabbithutch 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/worker.rb +1 -1
  2. data/rabbithutch.gemspec +1 -1
  3. metadata +1 -1
@@ -19,7 +19,7 @@ module RabbitHutch
19
19
  # begin listening for all topics in publish.#
20
20
  def start
21
21
  @exchange = @channel.topic(@exchange_name, :durable => true, :auto_delete => false, :internal => true)
22
- @queue = @channel.queue(@queue_name, :durable => false, :auto_delete => false)
22
+ @queue = @channel.queue(@queue_name, :durable => true, :auto_delete => false)
23
23
  @queue.bind(@exchange, :routing_key => 'publish.#')
24
24
  @queue.subscribe(&@consumer.method(:handle_message))
25
25
  end
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = %q{rabbithutch}
7
- gem.version = "0.1.1"
7
+ gem.version = "0.1.2"
8
8
  gem.authors = ["John Ryan"]
9
9
  gem.email = ["555john@gmail.com"]
10
10
  gem.description = %q{RabbitMq Trace Logger - Listen to multiple RabbitMq instances and log them to a
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rabbithutch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: