We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4acfb6 commit bae2d0aCopy full SHA for bae2d0a
HISTORY.md
@@ -1,3 +1,7 @@
1
+## 1.2.4 (2009-12-15)
2
+
3
+* Web Bugfix: fix key links on stat page
4
5
## 1.2.3 (2009-12-15)
6
7
* Bugfix: Fixed `rand` seeding in child processes.
lib/resque/server/views/stats.erb
@@ -35,7 +35,7 @@
35
</tr>
36
<% end %>
37
</table>
38
-
39
<% elsif params[:id] == 'keys' %>
40
41
<h1>Keys owned by <%= resque %></h1>
@@ -49,7 +49,7 @@
49
<% for key in resque.keys.sort %>
50
<tr>
51
<th>
52
- <a href="/stats/keys/<%= key %>"><%= key %></a>
+ <a href="<%=u "/stats/keys/#{key}" %>"><%= key %></a>
53
</th>
54
<td><%= resque.redis.type key %></td>
55
<td><%= redis_get_size key %></td>
0 commit comments