promiscuous 0.31.0 → 0.31.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,6 @@ module Promiscuous::Publisher::AMQP
4
4
 
5
5
  def publish
6
6
  exchange_name = Promiscuous::AMQP::EXCHANGE
7
- options[:personality] = 'new'
8
7
  exchange_name += ".#{options[:personality]}" if options[:personality]
9
8
  Promiscuous::AMQP.publish(:exchange_name => exchange_name, :key => to, :payload => payload.to_json)
10
9
  rescue Exception => e
@@ -11,8 +11,6 @@ class Promiscuous::Subscriber::Worker
11
11
  def initialize(options={})
12
12
  Celluloid.exception_handler { |e| Promiscuous::Config.error_notifier.try(:call, e) }
13
13
 
14
- options[:personality] = 'new'
15
-
16
14
  self.options = options
17
15
  self.stopped = true
18
16
 
@@ -1,3 +1,3 @@
1
1
  module Promiscuous
2
- VERSION = '0.31.0'
2
+ VERSION = '0.31.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: promiscuous
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.31.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -207,8 +207,8 @@ files:
207
207
  - lib/promiscuous/publisher/base.rb
208
208
  - lib/promiscuous/publisher/lint.rb
209
209
  - lib/promiscuous/publisher/mongoid.rb
210
- - lib/promiscuous/publisher/amqp.rb
211
210
  - lib/promiscuous/publisher/model.rb
211
+ - lib/promiscuous/publisher/amqp.rb
212
212
  - lib/promiscuous/subscriber/lint/amqp.rb
213
213
  - lib/promiscuous/subscriber/lint/base.rb
214
214
  - lib/promiscuous/subscriber/lint/class.rb