eventq_aws 1.3.2 → 1.3.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9a3165a36aed7ffb542c69ef99c959dbf7785cc
4
- data.tar.gz: dbee78e47062ad925991c37956768c8c8106dc24
3
+ metadata.gz: b24d3a5c26b90e08fc399303f638eebcc955af55
4
+ data.tar.gz: abb87b86f6acac4d721d6dba6211548db54cae54
5
5
  SHA512:
6
- metadata.gz: fd197dd8cdf8bf2b9de5d7cede05bd6d86fca977b7ee8ec4f1acc13c62ba96364004f83ec75a429fe3ab39ba3cc2f329ac6eecbd5b8ace89cf5c0c7425df02cc
7
- data.tar.gz: b60a95ae460999763ab866a40c8a7e61ee735a76d9bfc7b8672b9cb9e706337e719f8c69d8fb215a15dd594af15e5f48dc730d284eae1c7b248936877db3a591
6
+ metadata.gz: bb1992ddf77d398c30a48e98ff9a537d5194ec84e901acedd95aab27a6a9e4aad09d531ac169f6b7e958059de551f3ca12e60f8a5663031fde6d11958c7386f1
7
+ data.tar.gz: 255c52208685725db52606878f7b7d26b973f6ab6df6f63f5acf55483cdc268b222f03691cb3d08069e3195bf159c95e3ff17b3814f6371df1b4d3a10437de23
@@ -22,10 +22,10 @@ module EventQ
22
22
  configure(queue, options)
23
23
 
24
24
  if options[:client] == nil
25
- raise ':client (QueueClient) must be specified.'
25
+ raise "[#{self.class}] - :client (QueueClient) must be specified."
26
26
  end
27
27
 
28
- raise 'Worker is already running.' if running?
28
+ raise "[#{self.class}] - Worker is already running." if running?
29
29
 
30
30
  EventQ.log(:info, "[#{self.class}] - Listening for messages.")
31
31
 
@@ -140,7 +140,7 @@ module EventQ
140
140
  end
141
141
 
142
142
  rescue => e
143
- EventQ.log(:error, "[#{self.class}] - An unhandled error happened while attempting to process a queue message. Error: #{e}")
143
+ EventQ.log(:error, "[#{self.class}] - An unhandled error happened while attempting to process a queue message. Error: #{e.backtrace}")
144
144
 
145
145
  error = true
146
146
 
@@ -154,7 +154,7 @@ module EventQ
154
154
  end
155
155
 
156
156
  rescue => e
157
- EventQ.log(:error, "[#{self.class}] - An error occurred attempting to retrieve a message from the queue. Error: #{e}")
157
+ EventQ.log(:error, "[#{self.class}] - An error occurred attempting to retrieve a message from the queue. Error: #{e.backtrace}")
158
158
  end
159
159
 
160
160
  GC.start
@@ -1,5 +1,5 @@
1
1
  module EventQ
2
2
  module Amazon
3
- VERSION = "1.3.2"
3
+ VERSION = "1.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eventq_aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - vaughanbrittonsage