simple_job 0.5.2 → 0.5.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.
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,8 @@
1
1
  = Simple Job
2
2
 
3
+ == Version 0.5.3
4
+ * Fixed edge case where cloudwatch exception could break SQSJobQueue#poll
5
+
3
6
  == Version 0.5.2
4
7
  * Fixed handling of sparse queue when using :asynchronous_execute implementation
5
8
 
@@ -176,7 +176,7 @@ class SQSJobQueue < JobQueue
176
176
  Kernel.sleep(options[:poll_interval]) unless options[:poll_interval] == 0
177
177
  end
178
178
  rescue Exception => e
179
- log_execution(false, last_message, current_job_type, current_start_milliseconds)
179
+ log_execution(false, last_message, current_job_type, current_start_milliseconds) rescue nil
180
180
 
181
181
  if options[:raise_exceptions]
182
182
  raise e
@@ -1,3 +1,3 @@
1
1
  module SimpleJob
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_job
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 2
10
- version: 0.5.2
9
+ - 3
10
+ version: 0.5.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Dawson