Skip to content

Commit bae2d0a

Browse files
committed
Web Bugfix: fix key links on stat page
1 parent a4acfb6 commit bae2d0a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.4 (2009-12-15)
2+
3+
* Web Bugfix: fix key links on stat page
4+
15
## 1.2.3 (2009-12-15)
26

37
* Bugfix: Fixed `rand` seeding in child processes.

lib/resque/server/views/stats.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
</tr>
3636
<% end %>
3737
</table>
38-
38+
3939
<% elsif params[:id] == 'keys' %>
4040

4141
<h1>Keys owned by <%= resque %></h1>
@@ -49,7 +49,7 @@
4949
<% for key in resque.keys.sort %>
5050
<tr>
5151
<th>
52-
<a href="/stats/keys/<%= key %>"><%= key %></a>
52+
<a href="<%=u "/stats/keys/#{key}" %>"><%= key %></a>
5353
</th>
5454
<td><%= resque.redis.type key %></td>
5555
<td><%= redis_get_size key %></td>

0 commit comments

Comments
 (0)