cwyckoff-rosetta_queue 0.2.1 → 0.2.2

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.
@@ -5,14 +5,14 @@ module RosettaQueue
5
5
  RosettaQueue::Adapter.instance.receive_once(Destinations.lookup(destination), options)
6
6
 
7
7
  rescue Exception=>e
8
- RosettaQueue.logger.error("Caught exception in Consumer#receive: #{$!}\n" + e.backtrace.join("\n\t"))
8
+ RosettaQueue.logger.error("Caught exception in Consumer.receive: #{$!}\n" + e.backtrace.join("\n\t"))
9
9
  end
10
10
 
11
11
  def self.delete(destination, options={})
12
12
  RosettaQueue::Adapter.instance.delete(Destinations.lookup(destination), options)
13
13
 
14
14
  rescue Exception=>e
15
- RosettaQueue.logger.error("Caught exception in Consumer#delete: #{$!}\n" + e.backtrace.join("\n\t"))
15
+ RosettaQueue.logger.error("Caught exception in Consumer.delete: #{$!}\n" + e.backtrace.join("\n\t"))
16
16
  end
17
17
 
18
18
  def initialize(message_handler)
@@ -7,7 +7,7 @@ module RosettaQueue
7
7
  RosettaQueue::Adapter.instance.send_message(Destinations.lookup(destination), Filters.process_sending(message), options)
8
8
 
9
9
  rescue Exception=>e
10
- RosettaQueue.logger.error("Caught exception in Consumer#receive: #{$!}\n" + e.backtrace.join("\n\t"))
10
+ RosettaQueue.logger.error("Caught exception in Consumer.publish: #{$!}\n" + e.backtrace.join("\n\t"))
11
11
  end
12
12
 
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cwyckoff-rosetta_queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Mabey