resque 1.9.4 → 1.9.5

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,8 @@
1
+ ## 1.9.5 (2010-06-16)
2
+
3
+ * Web Bugfix: Display the configured namespace on the stats page
4
+ * Revert Bugfix: Make ps -o more cross platform friendly
5
+
1
6
  ## 1.9.4 (2010-06-14)
2
7
 
3
8
  * Bugfix: Multiple failure backend gets exception information when created
@@ -39,7 +39,7 @@
39
39
  <% elsif params[:id] == 'keys' %>
40
40
 
41
41
  <h1>Keys owned by <%= resque %></h1>
42
- <p class='sub'>(All keys are actually prefixed with "resque:")</p>
42
+ <p class='sub'>(All keys are actually prefixed with "<%= Resque.redis.namespace %>:")</p>
43
43
  <table class='stats'>
44
44
  <tr>
45
45
  <th>key</th>
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.9.4'
2
+ Version = VERSION = '1.9.5'
3
3
  end
data/lib/resque/worker.rb CHANGED
@@ -447,7 +447,7 @@ module Resque
447
447
  # Returns an array of string pids of all the other workers on this
448
448
  # machine. Useful when pruning dead workers on startup.
449
449
  def worker_pids
450
- `ps -A -o pid,comm | grep [r]esque`.split("\n").map do |line|
450
+ `ps -A -o pid,command | grep [r]esque`.split("\n").map do |line|
451
451
  line.split(' ')[0]
452
452
  end
453
453
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 9
8
- - 4
9
- version: 1.9.4
8
+ - 5
9
+ version: 1.9.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Wanstrath
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-06-14 00:00:00 +02:00
17
+ date: 2010-06-16 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency