resque 1.17.0 → 1.17.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of resque might be problematic. Click here for more details.

data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.17.1 (2011-05-27)
2
+
3
+ * Reverted `exit` change. Back to `exit!`.
4
+
1
5
  ## 1.17.0 (2011-05-26)
2
6
 
3
7
  * Workers exit with `exit` instead of `exit!`. This means you
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.17.0'
2
+ Version = VERSION = '1.17.1'
3
3
  end
@@ -128,7 +128,7 @@ module Resque
128
128
  else
129
129
  procline "Processing #{job.queue} since #{Time.now.to_i}"
130
130
  perform(job, &block)
131
- exit unless @cant_fork
131
+ exit! unless @cant_fork
132
132
  end
133
133
 
134
134
  done_working
@@ -302,7 +302,7 @@ module Resque
302
302
  def paused?
303
303
  @paused
304
304
  end
305
-
305
+
306
306
  # Stop processing jobs after the current one has completed (if we're
307
307
  # currently running one).
308
308
  def pause_processing
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resque
3
3
  version: !ruby/object:Gem::Version
4
- hash: 83
4
+ hash: 81
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 17
9
- - 0
10
- version: 1.17.0
9
+ - 1
10
+ version: 1.17.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Chris Wanstrath
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-26 00:00:00 -07:00
18
+ date: 2011-05-27 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency