resque-web 0.0.3 → 0.0.4
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.
- checksums.yaml +4 -4
- data/README.md +32 -0
- data/app/assets/stylesheets/resque_web/{bootstrap_and_overrides.css → bootstrap_and_overrides.css.erb} +1 -1
- data/app/controllers/resque_web/application_controller.rb +9 -1
- data/app/views/layouts/resque_web/application.html.erb +1 -1
- data/app/views/resque_web/failures/index.html.erb +1 -1
- data/app/views/resque_web/workers/show.html.erb +2 -2
- data/app/views/resque_web/working/_working.html.erb +2 -2
- data/config/initializers/resque_config.rb +0 -1
- data/lib/resque_web/tabs.rb +21 -0
- data/lib/resque_web/version.rb +1 -1
- data/test/dummy/log/development.log +2108 -0
- data/test/dummy/log/test.log +392 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/373b0c58027ae58f732cc7e48e62a522 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4d22200fb380d8ae9d5f07525088622f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/77c22795a818c14728d95acd9587b669 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8fbf100e961e22baca23d1850b41e4d5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b4d13aa7c0619b532c51ba11cf25a61c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cfedb3b22e14b70300291f97fb8376e5 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/functional/failures_controller_test.rb +10 -9
- data/test/functional/overview_controller_test.rb +34 -4
- data/test/functional/queues_controller_test.rb +4 -1
- data/test/support/controller_test_helpers.rb +22 -0
- metadata +14 -5
- data/test/dummy/config/initializers/wat.rb +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49370634f83656fb026087b61f407d0e694d270e
|
4
|
+
data.tar.gz: 6f8cffbd8816702b2d0e95e2a1cf68c7817c32a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16cce0ff5e53e531fab09ff82391e2c246d908bb21d5e6e82553be8deefca77713be5a6b135b37ad60010741ae06e5fa3066b09241bf1c56f3ade1797e4ace08
|
7
|
+
data.tar.gz: 146990a48227c490a62c66d2f186e2b8ce3d50c1a67c400fc9b773e9e786a9c868d641b3568614c7398995c5982d665ce4311fcdbd1b9c667cc69c679b8b6969
|
data/README.md
CHANGED
@@ -37,6 +37,38 @@ If you need a non-default resque server, use this environment variable.
|
|
37
37
|
```
|
38
38
|
RAILS_RESQUE_REDIS=123.x.0.456:6712
|
39
39
|
```
|
40
|
+
## Security
|
41
|
+
|
42
|
+
You almost certainly want to limit access when using resque-web in production. Using [routes constraints](http://guides.rubyonrails.org/routing.html#request-based-constraints) is one way to achieve this:
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
# config/routes.rb
|
46
|
+
|
47
|
+
resque_web_constraint = lambda { |request| request.remote_ip == '127.0.0.1' }
|
48
|
+
constraints resque_web_constraint do
|
49
|
+
mount ResqueWeb::Engine => "/resque_web"
|
50
|
+
end
|
51
|
+
|
52
|
+
```
|
53
|
+
|
54
|
+
Another example of a route constraint using the current user when using Devise or another warden based authentication system:
|
55
|
+
|
56
|
+
```ruby
|
57
|
+
# config/routes.rb
|
58
|
+
resque_web_constraint = lambda do |request|
|
59
|
+
current_user = request.env['warden'].user
|
60
|
+
current_user.present? && current_user.respond_to?(:is_admin?) && current_user.is_admin?
|
61
|
+
end
|
62
|
+
|
63
|
+
constraints resque_web_constraint do
|
64
|
+
mount ResqueWeb::Engine => "/resque_web"
|
65
|
+
end
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
### HTTP Basic Authentication
|
70
|
+
|
71
|
+
HTTP Basic Authentication is supported out of the box. Simply set the environment variables `RESQUE_WEB_HTTP_BASIC_AUTH_USER` and `RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD` to turn it on. If you're using Resque with Heroku run `heroku config:set RESQUE_WEB_HTTP_BASIC_AUTH_USER=user RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=secret` to get ResqueWeb secured.
|
40
72
|
|
41
73
|
## Screenshot
|
42
74
|
|
@@ -101,7 +101,7 @@ body {
|
|
101
101
|
#footer { padding:10px 5%; background:#efefef; color:#999; font-size:85%; line-height:1.5; border-top:5px solid #ccc; padding-top:10px;}
|
102
102
|
#footer p a { color:#999;}
|
103
103
|
|
104
|
-
.container p.poll { background:url(poll.png) no-repeat 0 2px; padding:3px 0; padding-left:23px; float:right; font-size:85%; }
|
104
|
+
.container p.poll { background:url(<%= asset_path 'poll.png' %>) no-repeat 0 2px; padding:3px 0; padding-left:23px; float:right; font-size:85%; }
|
105
105
|
|
106
106
|
.container ul.failed {margin-top: 20px;}
|
107
107
|
.container ul.failed li {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module ResqueWeb
|
2
2
|
class ApplicationController < ActionController::Base
|
3
3
|
protect_from_forgery
|
4
|
-
before_filter :set_subtabs
|
4
|
+
before_filter :set_subtabs, :authorize
|
5
5
|
|
6
6
|
def self.subtabs(*tab_names)
|
7
7
|
return defined?(@subtabs) ? @subtabs : [] if tab_names.empty?
|
@@ -11,5 +11,13 @@ module ResqueWeb
|
|
11
11
|
def set_subtabs(subtabs = self.class.subtabs)
|
12
12
|
@subtabs = subtabs
|
13
13
|
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def authorize
|
18
|
+
if ENV["RESQUE_WEB_HTTP_BASIC_AUTH_USER"] && ENV["RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD"]
|
19
|
+
authenticate_or_request_with_http_basic {|u, p| u == ENV["RESQUE_WEB_HTTP_BASIC_AUTH_USER"] && p == ENV["RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD"] }
|
20
|
+
end
|
21
|
+
end
|
14
22
|
end
|
15
23
|
end
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<span class="icon-bar"></span>
|
21
21
|
<span class="icon-bar"></span>
|
22
22
|
</a>
|
23
|
-
|
23
|
+
<%= image_tag "resque_web/lifebuoy.png", class: 'logo' %>
|
24
24
|
<%= link_to "Resque.", root_path, :class => "brand" %>
|
25
25
|
<div class="nav-collapse collapse">
|
26
26
|
<ul class="nav">
|
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
<% unless failure_size.zero? %>
|
8
8
|
<%= form_tag(destroy_all_failures_path(:queue=>params[:queue]), :method => :delete) do %>
|
9
|
-
<%= submit_tag "Clear #{params[:queue] ? "'#{params[:queue]}'" : 'Failed'} Jobs", :confirm
|
9
|
+
<%= submit_tag "Clear #{params[:queue] ? "'#{params[:queue]}'" : 'Failed'} Jobs", data: { confirm: "Are you sure?" }, :class => 'btn btn-danger' %>
|
10
10
|
<% if failure_size >ResqueWeb::ApplicationHelper::PER_PAGE %>
|
11
11
|
<%= link_to "Last page »".html_safe, {:start => (failure_size - ResqueWeb::ApplicationHelper::PER_PAGE)}, :class => 'btn' %>
|
12
12
|
<% end %>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
</tr>
|
11
11
|
<% @workers.each do |worker| %>
|
12
12
|
<tr class="<% worker.state %>">
|
13
|
-
<td class="icon"><%= image_tag "
|
13
|
+
<td class="icon"><%= image_tag "resque_web/#{worker.state}.png", :alt => worker.state, :title => worker.state %></td>
|
14
14
|
|
15
15
|
<% host, pid, queues = worker.to_s.split(':') %>
|
16
16
|
<td class="where"><%= host %>:<%= pid %></td>
|
@@ -35,4 +35,4 @@
|
|
35
35
|
<td colspan="4" class="no-data">There are no registered workers</td>
|
36
36
|
</tr>
|
37
37
|
<% end %>
|
38
|
-
</table>
|
38
|
+
</table>
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
<% sorted_worker_jobs.each do |worker, job| %>
|
17
17
|
<tr>
|
18
|
-
<td class="icon"><%= image_tag "
|
18
|
+
<td class="icon"><%= image_tag "resque_web/#{worker.state}.png", :alt => worker.state, :title => worker.state %></td>
|
19
19
|
<% host, pid, queues = worker.to_s.split(':') %>
|
20
20
|
<td class="where"><%= link_to "#{host}:#{pid}", worker_path(host) %></td>
|
21
21
|
<td class="queues queue">
|
@@ -31,4 +31,4 @@
|
|
31
31
|
</td>
|
32
32
|
</tr>
|
33
33
|
<% end %>
|
34
|
-
</table>
|
34
|
+
</table>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module ResqueWeb
|
2
|
+
module Tabs
|
3
|
+
class << self
|
4
|
+
attr_accessor :tabs
|
5
|
+
|
6
|
+
def tabs
|
7
|
+
@tabs ||= {'overview' => :overview,
|
8
|
+
'working' => :working_index,
|
9
|
+
'failures' => :failures,
|
10
|
+
'queues' => :queues,
|
11
|
+
'workers' => :workers,
|
12
|
+
'stats' => :stats
|
13
|
+
}
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.add_tab(link, route)
|
18
|
+
tabs[link] = route
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/resque_web/version.rb
CHANGED
@@ -220952,3 +220952,2111 @@ ActionView::Template::Error (undefined method `wat_path' for #<#<Class:0x0000000
|
|
220952
220952
|
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
220953
220953
|
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
|
220954
220954
|
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
|
220955
|
+
|
220956
|
+
|
220957
|
+
Started GET "/resque" for 127.0.0.1 at 2013-10-29 13:56:17 +0900
|
220958
|
+
|
220959
|
+
ActionController::RoutingError (No route matches [GET] "/resque"):
|
220960
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
220961
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
220962
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
220963
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
220964
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
220965
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
220966
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
220967
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
220968
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
220969
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
220970
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
220971
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
220972
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
220973
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
220974
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
220975
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
220976
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
220977
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
220978
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
220979
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
220980
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
220981
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
220982
|
+
|
220983
|
+
|
220984
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
220985
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
|
220986
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
|
220987
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (72.3ms)
|
220988
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (99.6ms)
|
220989
|
+
|
220990
|
+
|
220991
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-29 13:56:22 +0900
|
220992
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
220993
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (4.1ms)
|
220994
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.8ms)
|
220995
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (2.7ms)
|
220996
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (11.9ms)
|
220997
|
+
Completed 500 Internal Server Error in 286ms
|
220998
|
+
|
220999
|
+
ActionView::Template::Error (undefined method `wat_path' for #<#<Class:0x0000000293d468>:0x000000029435e8>):
|
221000
|
+
25: <div class="nav-collapse collapse">
|
221001
|
+
26: <ul class="nav">
|
221002
|
+
27: <% tabs.each do |tab_name,path| %>
|
221003
|
+
28: <%= tab tab_name,path %>
|
221004
|
+
29: <% end %>
|
221005
|
+
30: </ul>
|
221006
|
+
31: </div>
|
221007
|
+
actionpack (4.0.0) lib/action_dispatch/routing/polymorphic_routes.rb:129:in `polymorphic_url'
|
221008
|
+
actionpack (4.0.0) lib/action_dispatch/routing/polymorphic_routes.rb:135:in `polymorphic_path'
|
221009
|
+
actionpack (4.0.0) lib/action_view/routing_url_for.rb:87:in `url_for'
|
221010
|
+
actionpack (4.0.0) lib/action_view/helpers/url_helper.rb:180:in `link_to'
|
221011
|
+
/home/tony/src/resque_web/app/helpers/resque_web/application_helper.rb:24:in `tab'
|
221012
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:28:in `block in __home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb__1804492055026893817_21661460'
|
221013
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27:in `each'
|
221014
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27:in `__home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb__1804492055026893817_21661460'
|
221015
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
221016
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
221017
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
221018
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
221019
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
221020
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
221021
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
221022
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
221023
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
221024
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
221025
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
221026
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
221027
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
221028
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
221029
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
221030
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
221031
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
221032
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
221033
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
221034
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
221035
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
221036
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
221037
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
221038
|
+
/home/tony/src/resque_web/app/controllers/resque_web/overview_controller.rb:4:in `show'
|
221039
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
221040
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
221041
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
221042
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
221043
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:403:in `_run__878664338662259798__process_action__callbacks'
|
221044
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221045
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
221046
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
221047
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
221048
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221049
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221050
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221051
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
221052
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
221053
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
221054
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
221055
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
221056
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
221057
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
221058
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
221059
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
221060
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
221061
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
221062
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221063
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221064
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221065
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221066
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221067
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
221068
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221069
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221070
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221071
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221072
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
221073
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
221074
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
221075
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
221076
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
221077
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
221078
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
221079
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
221080
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
221081
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
221082
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
221083
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
221084
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2327023131226374614__call__callbacks'
|
221085
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221086
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
221087
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
221088
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
221089
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
221090
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221091
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221092
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221093
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221094
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221095
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221096
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221097
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221098
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221099
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221100
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221101
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221102
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221103
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221104
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221105
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221106
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221107
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221108
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221109
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221110
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221111
|
+
|
221112
|
+
|
221113
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
221114
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
221115
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
|
221116
|
+
|
221117
|
+
|
221118
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-29 13:57:19 +0900
|
221119
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221120
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (4.3ms)
|
221121
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.0ms)
|
221122
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (2.1ms)
|
221123
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (14.4ms)
|
221124
|
+
Completed 500 Internal Server Error in 292ms
|
221125
|
+
|
221126
|
+
ActionView::Template::Error (undefined method `wat_path' for #<#<Class:0x000000026f1e98>:0x000000026f0ef8>):
|
221127
|
+
25: <div class="nav-collapse collapse">
|
221128
|
+
26: <ul class="nav">
|
221129
|
+
27: <% tabs.each do |tab_name,path| %>
|
221130
|
+
28: <%= tab tab_name,path %>
|
221131
|
+
29: <% end %>
|
221132
|
+
30: </ul>
|
221133
|
+
31: </div>
|
221134
|
+
actionpack (4.0.0) lib/action_dispatch/routing/polymorphic_routes.rb:129:in `polymorphic_url'
|
221135
|
+
actionpack (4.0.0) lib/action_dispatch/routing/polymorphic_routes.rb:135:in `polymorphic_path'
|
221136
|
+
actionpack (4.0.0) lib/action_view/routing_url_for.rb:87:in `url_for'
|
221137
|
+
actionpack (4.0.0) lib/action_view/helpers/url_helper.rb:180:in `link_to'
|
221138
|
+
/home/tony/src/resque_web/app/helpers/resque_web/application_helper.rb:24:in `tab'
|
221139
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:28:in `block in __home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb___688089990210903998_20534900'
|
221140
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27:in `each'
|
221141
|
+
/home/tony/src/resque_web/app/views/layouts/resque_web/application.html.erb:27:in `__home_tony_src_resque_web_app_views_layouts_resque_web_application_html_erb___688089990210903998_20534900'
|
221142
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
221143
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
221144
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
221145
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
221146
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
221147
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
221148
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
221149
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
221150
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
221151
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
221152
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
221153
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
221154
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
221155
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
221156
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
221157
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
221158
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
221159
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
221160
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
221161
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
221162
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
221163
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
221164
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
221165
|
+
/home/tony/src/resque_web/app/controllers/resque_web/overview_controller.rb:4:in `show'
|
221166
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
221167
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
221168
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
221169
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
221170
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:403:in `_run__945622697282229020__process_action__callbacks'
|
221171
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221172
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
221173
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
221174
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
221175
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221176
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221177
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221178
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
221179
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
221180
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
221181
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
221182
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
221183
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
221184
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
221185
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
221186
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
221187
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
221188
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
221189
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221190
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221191
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221192
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221193
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221194
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
221195
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221196
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221197
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221198
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221199
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
221200
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
221201
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
221202
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
221203
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
221204
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
221205
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
221206
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
221207
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
221208
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
221209
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
221210
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
221211
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1397187913661534823__call__callbacks'
|
221212
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221213
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
221214
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
221215
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
221216
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
221217
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221218
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221219
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221220
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221221
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221222
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221223
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221224
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221225
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221226
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221227
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221228
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221229
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221230
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221231
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221232
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221233
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221234
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221235
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221236
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221237
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221238
|
+
|
221239
|
+
|
221240
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
221241
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
221242
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
|
221243
|
+
|
221244
|
+
|
221245
|
+
Started GET "/resque" for 127.0.0.1 at 2013-10-30 16:58:20 +0900
|
221246
|
+
|
221247
|
+
ActionController::RoutingError (No route matches [GET] "/resque"):
|
221248
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
221249
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221250
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221251
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221252
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221253
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221254
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221255
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221256
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221257
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221258
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221259
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221260
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221261
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221262
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221263
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221264
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221265
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221266
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221267
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221268
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221269
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221270
|
+
|
221271
|
+
|
221272
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
|
221273
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
|
221274
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
|
221275
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.3ms)
|
221276
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (71.9ms)
|
221277
|
+
|
221278
|
+
|
221279
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-30 16:58:25 +0900
|
221280
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221281
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (11.4ms)
|
221282
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (17.9ms)
|
221283
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (19.5ms)
|
221284
|
+
Completed 500 Internal Server Error in 24ms
|
221285
|
+
|
221286
|
+
ActionView::Template::Error (Error connecting to Redis on 127.0.0.1:6379 (ECONNREFUSED)):
|
221287
|
+
3: <th>Name</th>
|
221288
|
+
4: <th>Jobs</th>
|
221289
|
+
5: </tr>
|
221290
|
+
6: <% queue_names.each do |queue_name| %>
|
221291
|
+
7: <tr>
|
221292
|
+
8: <td class="queue"><%= link_to queue_name, queue_path(queue_name) %></td>
|
221293
|
+
9: <td class="size"><%= queue_size(queue_name) %></td>
|
221294
|
+
redis (3.0.4) lib/redis/client.rb:276:in `rescue in establish_connection'
|
221295
|
+
redis (3.0.4) lib/redis/client.rb:271:in `establish_connection'
|
221296
|
+
redis (3.0.4) lib/redis/client.rb:69:in `connect'
|
221297
|
+
redis (3.0.4) lib/redis/client.rb:290:in `ensure_connected'
|
221298
|
+
redis (3.0.4) lib/redis/client.rb:177:in `block in process'
|
221299
|
+
redis (3.0.4) lib/redis/client.rb:256:in `logging'
|
221300
|
+
redis (3.0.4) lib/redis/client.rb:176:in `process'
|
221301
|
+
redis (3.0.4) lib/redis/client.rb:84:in `call'
|
221302
|
+
redis (3.0.4) lib/redis.rb:1247:in `block in smembers'
|
221303
|
+
redis (3.0.4) lib/redis.rb:36:in `block in synchronize'
|
221304
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
221305
|
+
redis (3.0.4) lib/redis.rb:36:in `synchronize'
|
221306
|
+
redis (3.0.4) lib/redis.rb:1246:in `smembers'
|
221307
|
+
redis-namespace (1.3.1) lib/redis/namespace.rb:317:in `method_missing'
|
221308
|
+
/home/tony/.rvm/gems/ruby-2.0.0-p195/bundler/gems/resque-a57479d6c91c/lib/resque.rb:255:in `queues'
|
221309
|
+
/home/tony/src/resque_web/app/helpers/resque_web/queues_helper.rb:14:in `queue_names'
|
221310
|
+
/home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb:6:in `__home_tony_src_resque_web_app_views_resque_web_queues__queues_basic_html_erb__1612860401495801317_18873260'
|
221311
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
221312
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
221313
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
221314
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
|
221315
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
|
221316
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
221317
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221318
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221319
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221320
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
221321
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:278:in `render'
|
221322
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:47:in `render_partial'
|
221323
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:21:in `render'
|
221324
|
+
actionpack (4.0.0) lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
221325
|
+
/home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb:4:in `__home_tony_src_resque_web_app_views_resque_web_queues__queues_html_erb___1527173256829692835_18793380'
|
221326
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
221327
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
221328
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
221329
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
|
221330
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
|
221331
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
221332
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221333
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221334
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221335
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
221336
|
+
actionpack (4.0.0) lib/action_view/renderer/partial_renderer.rb:278:in `render'
|
221337
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:47:in `render_partial'
|
221338
|
+
actionpack (4.0.0) lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
221339
|
+
/home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb:1:in `__home_tony_src_resque_web_app_views_resque_web_overview_show_html_erb___2953573634015680483_18757180'
|
221340
|
+
actionpack (4.0.0) lib/action_view/template.rb:143:in `block in render'
|
221341
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:161:in `instrument'
|
221342
|
+
actionpack (4.0.0) lib/action_view/template.rb:141:in `render'
|
221343
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
|
221344
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
221345
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221346
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221347
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221348
|
+
actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
221349
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
|
221350
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
|
221351
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
|
221352
|
+
actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
221353
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
221354
|
+
actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
221355
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
|
221356
|
+
actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
|
221357
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
|
221358
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
|
221359
|
+
actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
|
221360
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
|
221361
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
221362
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
221363
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
221364
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
221365
|
+
activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
221366
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
221367
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
221368
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
221369
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
221370
|
+
/home/tony/src/resque_web/app/controllers/resque_web/overview_controller.rb:4:in `show'
|
221371
|
+
actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
221372
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
|
221373
|
+
actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
221374
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
221375
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:403:in `_run__4595680648248118553__process_action__callbacks'
|
221376
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221377
|
+
actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
221378
|
+
actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
221379
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
221380
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
221381
|
+
activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
221382
|
+
activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
|
221383
|
+
actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
221384
|
+
actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
|
221385
|
+
activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
221386
|
+
actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
|
221387
|
+
actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
|
221388
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
|
221389
|
+
actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
221390
|
+
actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
|
221391
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
221392
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
221393
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
221394
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221395
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221396
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221397
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221398
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221399
|
+
railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
221400
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
221401
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
221402
|
+
actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
221403
|
+
actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
|
221404
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
221405
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
221406
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
221407
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
221408
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
221409
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
221410
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
221411
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
221412
|
+
activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
|
221413
|
+
activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
221414
|
+
activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
|
221415
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
221416
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3090030630107389865__call__callbacks'
|
221417
|
+
activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
221418
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
221419
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
221420
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
221421
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
221422
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221423
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221424
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221425
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221426
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221427
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221428
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221429
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221430
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221431
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221432
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221433
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221434
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221435
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221436
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221437
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221438
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221439
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221440
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221441
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221442
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221443
|
+
|
221444
|
+
|
221445
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
|
221446
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (75.2ms)
|
221447
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (97.0ms)
|
221448
|
+
|
221449
|
+
|
221450
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-30 16:58:30 +0900
|
221451
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221452
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.2ms)
|
221453
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (3.2ms)
|
221454
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (2.1ms)
|
221455
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (8.8ms)
|
221456
|
+
Completed 200 OK in 748ms (Views: 747.4ms | ActiveRecord: 0.0ms)
|
221457
|
+
|
221458
|
+
|
221459
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221460
|
+
|
221461
|
+
|
221462
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221463
|
+
|
221464
|
+
|
221465
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221466
|
+
|
221467
|
+
|
221468
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221469
|
+
|
221470
|
+
|
221471
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221472
|
+
|
221473
|
+
|
221474
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221475
|
+
|
221476
|
+
|
221477
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221478
|
+
|
221479
|
+
|
221480
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221481
|
+
|
221482
|
+
|
221483
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221484
|
+
|
221485
|
+
|
221486
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221487
|
+
|
221488
|
+
|
221489
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221490
|
+
|
221491
|
+
|
221492
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221493
|
+
|
221494
|
+
|
221495
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221496
|
+
|
221497
|
+
|
221498
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221499
|
+
|
221500
|
+
|
221501
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221502
|
+
|
221503
|
+
|
221504
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221505
|
+
|
221506
|
+
|
221507
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221508
|
+
|
221509
|
+
|
221510
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221511
|
+
|
221512
|
+
|
221513
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221514
|
+
|
221515
|
+
|
221516
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221517
|
+
|
221518
|
+
|
221519
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221520
|
+
|
221521
|
+
|
221522
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221523
|
+
|
221524
|
+
|
221525
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221526
|
+
|
221527
|
+
|
221528
|
+
Started GET "/images/lifebuoy.png" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221529
|
+
|
221530
|
+
ActionController::RoutingError (No route matches [GET] "/images/lifebuoy.png"):
|
221531
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
221532
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221533
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221534
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221535
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221536
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221537
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221538
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221539
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221540
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221541
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221542
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221543
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221544
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221545
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221546
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221547
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221548
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221549
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221550
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221551
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221552
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221553
|
+
|
221554
|
+
|
221555
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
|
221556
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
|
221557
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms)
|
221558
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms)
|
221559
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (40.7ms)
|
221560
|
+
|
221561
|
+
|
221562
|
+
Started GET "/assets/resque_web/poll.png" for 127.0.0.1 at 2013-10-30 16:58:31 +0900
|
221563
|
+
|
221564
|
+
|
221565
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221566
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221567
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
221568
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (2.5ms)
|
221569
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
221570
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (5.8ms)
|
221571
|
+
Completed 200 OK in 98ms (Views: 97.4ms | ActiveRecord: 0.0ms)
|
221572
|
+
|
221573
|
+
|
221574
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221575
|
+
|
221576
|
+
|
221577
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221578
|
+
|
221579
|
+
|
221580
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221581
|
+
|
221582
|
+
|
221583
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221584
|
+
|
221585
|
+
|
221586
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221587
|
+
|
221588
|
+
|
221589
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221590
|
+
|
221591
|
+
|
221592
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221593
|
+
|
221594
|
+
|
221595
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221596
|
+
|
221597
|
+
|
221598
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221599
|
+
|
221600
|
+
|
221601
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221602
|
+
|
221603
|
+
|
221604
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221605
|
+
|
221606
|
+
|
221607
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221608
|
+
|
221609
|
+
|
221610
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221611
|
+
|
221612
|
+
|
221613
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221614
|
+
|
221615
|
+
|
221616
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221617
|
+
|
221618
|
+
|
221619
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221620
|
+
|
221621
|
+
|
221622
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221623
|
+
|
221624
|
+
|
221625
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221626
|
+
|
221627
|
+
|
221628
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221629
|
+
|
221630
|
+
|
221631
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221632
|
+
|
221633
|
+
|
221634
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221635
|
+
|
221636
|
+
|
221637
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221638
|
+
|
221639
|
+
|
221640
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221641
|
+
|
221642
|
+
|
221643
|
+
Started GET "/lifebuoy.png" for 127.0.0.1 at 2013-10-30 16:59:22 +0900
|
221644
|
+
|
221645
|
+
ActionController::RoutingError (No route matches [GET] "/lifebuoy.png"):
|
221646
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
221647
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221648
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221649
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221650
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221651
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221652
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221653
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221654
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221655
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221656
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221657
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221658
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221659
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221660
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221661
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221662
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221663
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221664
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221665
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221666
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221667
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221668
|
+
|
221669
|
+
|
221670
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
|
221671
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
|
221672
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms)
|
221673
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
|
221674
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (43.9ms)
|
221675
|
+
|
221676
|
+
|
221677
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-30 17:00:00 +0900
|
221678
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221679
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.3ms)
|
221680
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (4.9ms)
|
221681
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
221682
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (8.3ms)
|
221683
|
+
Completed 200 OK in 40ms (Views: 39.4ms | ActiveRecord: 0.0ms)
|
221684
|
+
|
221685
|
+
|
221686
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221687
|
+
|
221688
|
+
|
221689
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221690
|
+
|
221691
|
+
|
221692
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221693
|
+
|
221694
|
+
|
221695
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221696
|
+
|
221697
|
+
|
221698
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221699
|
+
|
221700
|
+
|
221701
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221702
|
+
|
221703
|
+
|
221704
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221705
|
+
|
221706
|
+
|
221707
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221708
|
+
|
221709
|
+
|
221710
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221711
|
+
|
221712
|
+
|
221713
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221714
|
+
|
221715
|
+
|
221716
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221717
|
+
|
221718
|
+
|
221719
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221720
|
+
|
221721
|
+
|
221722
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221723
|
+
|
221724
|
+
|
221725
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221726
|
+
|
221727
|
+
|
221728
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221729
|
+
|
221730
|
+
|
221731
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221732
|
+
|
221733
|
+
|
221734
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221735
|
+
|
221736
|
+
|
221737
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221738
|
+
|
221739
|
+
|
221740
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221741
|
+
|
221742
|
+
|
221743
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221744
|
+
|
221745
|
+
|
221746
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221747
|
+
|
221748
|
+
|
221749
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221750
|
+
|
221751
|
+
|
221752
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221753
|
+
|
221754
|
+
|
221755
|
+
Started GET "/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:00:01 +0900
|
221756
|
+
|
221757
|
+
ActionController::RoutingError (No route matches [GET] "/resque_web/lifebuoy.png"):
|
221758
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
221759
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
221760
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
221761
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
221762
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
221763
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
221764
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
221765
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
221766
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
221767
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
221768
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
221769
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
221770
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221771
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
221772
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
221773
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
221774
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
221775
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
221776
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
221777
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
221778
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
221779
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
221780
|
+
|
221781
|
+
|
221782
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
|
221783
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms)
|
221784
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms)
|
221785
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms)
|
221786
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (53.3ms)
|
221787
|
+
|
221788
|
+
|
221789
|
+
Started GET "/resque_web" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221790
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
221791
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.5ms)
|
221792
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (3.6ms)
|
221793
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
221794
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (7.0ms)
|
221795
|
+
Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.0ms)
|
221796
|
+
|
221797
|
+
|
221798
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221799
|
+
|
221800
|
+
|
221801
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221802
|
+
|
221803
|
+
|
221804
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221805
|
+
|
221806
|
+
|
221807
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221808
|
+
|
221809
|
+
|
221810
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221811
|
+
|
221812
|
+
|
221813
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221814
|
+
|
221815
|
+
|
221816
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221817
|
+
|
221818
|
+
|
221819
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221820
|
+
|
221821
|
+
|
221822
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221823
|
+
|
221824
|
+
|
221825
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221826
|
+
|
221827
|
+
|
221828
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221829
|
+
|
221830
|
+
|
221831
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221832
|
+
|
221833
|
+
|
221834
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221835
|
+
|
221836
|
+
|
221837
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221838
|
+
|
221839
|
+
|
221840
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:05 +0900
|
221841
|
+
|
221842
|
+
|
221843
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221844
|
+
|
221845
|
+
|
221846
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221847
|
+
|
221848
|
+
|
221849
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221850
|
+
|
221851
|
+
|
221852
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221853
|
+
|
221854
|
+
|
221855
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221856
|
+
|
221857
|
+
|
221858
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221859
|
+
|
221860
|
+
|
221861
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221862
|
+
|
221863
|
+
|
221864
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221865
|
+
|
221866
|
+
|
221867
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:00:06 +0900
|
221868
|
+
|
221869
|
+
|
221870
|
+
Started GET "/resque_web/working" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221871
|
+
Processing by ResqueWeb::WorkingController#index as HTML
|
221872
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
221873
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/index.html.erb within layouts/resque_web/application (4.2ms)
|
221874
|
+
Completed 200 OK in 85ms (Views: 83.7ms | ActiveRecord: 0.0ms)
|
221875
|
+
|
221876
|
+
|
221877
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221878
|
+
|
221879
|
+
|
221880
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221881
|
+
|
221882
|
+
|
221883
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221884
|
+
|
221885
|
+
|
221886
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221887
|
+
|
221888
|
+
|
221889
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221890
|
+
|
221891
|
+
|
221892
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221893
|
+
|
221894
|
+
|
221895
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221896
|
+
|
221897
|
+
|
221898
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221899
|
+
|
221900
|
+
|
221901
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221902
|
+
|
221903
|
+
|
221904
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221905
|
+
|
221906
|
+
|
221907
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221908
|
+
|
221909
|
+
|
221910
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221911
|
+
|
221912
|
+
|
221913
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221914
|
+
|
221915
|
+
|
221916
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221917
|
+
|
221918
|
+
|
221919
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221920
|
+
|
221921
|
+
|
221922
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221923
|
+
|
221924
|
+
|
221925
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221926
|
+
|
221927
|
+
|
221928
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221929
|
+
|
221930
|
+
|
221931
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221932
|
+
|
221933
|
+
|
221934
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221935
|
+
|
221936
|
+
|
221937
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221938
|
+
|
221939
|
+
|
221940
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221941
|
+
|
221942
|
+
|
221943
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:01:05 +0900
|
221944
|
+
|
221945
|
+
|
221946
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:01:06 +0900
|
221947
|
+
|
221948
|
+
|
221949
|
+
Started GET "/resque_web/working" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221950
|
+
Processing by ResqueWeb::WorkingController#index as HTML
|
221951
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.8ms)
|
221952
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/index.html.erb within layouts/resque_web/application (2.9ms)
|
221953
|
+
Completed 200 OK in 169ms (Views: 167.8ms | ActiveRecord: 0.0ms)
|
221954
|
+
|
221955
|
+
|
221956
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221957
|
+
|
221958
|
+
|
221959
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221960
|
+
|
221961
|
+
|
221962
|
+
Started GET "/assets/resque_web/bootstrap_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221963
|
+
|
221964
|
+
|
221965
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221966
|
+
|
221967
|
+
|
221968
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221969
|
+
|
221970
|
+
|
221971
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221972
|
+
|
221973
|
+
|
221974
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221975
|
+
|
221976
|
+
|
221977
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221978
|
+
|
221979
|
+
|
221980
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221981
|
+
|
221982
|
+
|
221983
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221984
|
+
|
221985
|
+
|
221986
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221987
|
+
|
221988
|
+
|
221989
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221990
|
+
|
221991
|
+
|
221992
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221993
|
+
|
221994
|
+
|
221995
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221996
|
+
|
221997
|
+
|
221998
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
221999
|
+
|
222000
|
+
|
222001
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222002
|
+
|
222003
|
+
|
222004
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222005
|
+
|
222006
|
+
|
222007
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222008
|
+
|
222009
|
+
|
222010
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222011
|
+
|
222012
|
+
|
222013
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222014
|
+
|
222015
|
+
|
222016
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222017
|
+
|
222018
|
+
|
222019
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222020
|
+
|
222021
|
+
|
222022
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222023
|
+
|
222024
|
+
|
222025
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:05:39 +0900
|
222026
|
+
|
222027
|
+
|
222028
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222029
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
222030
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.3ms)
|
222031
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (4.9ms)
|
222032
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222033
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (8.4ms)
|
222034
|
+
Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
222035
|
+
|
222036
|
+
|
222037
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222038
|
+
|
222039
|
+
|
222040
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222041
|
+
|
222042
|
+
|
222043
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222044
|
+
|
222045
|
+
|
222046
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222047
|
+
|
222048
|
+
|
222049
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222050
|
+
|
222051
|
+
|
222052
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222053
|
+
|
222054
|
+
|
222055
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222056
|
+
|
222057
|
+
|
222058
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222059
|
+
|
222060
|
+
|
222061
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222062
|
+
|
222063
|
+
|
222064
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222065
|
+
|
222066
|
+
|
222067
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222068
|
+
|
222069
|
+
|
222070
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222071
|
+
|
222072
|
+
|
222073
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222074
|
+
|
222075
|
+
|
222076
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222077
|
+
|
222078
|
+
|
222079
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222080
|
+
|
222081
|
+
|
222082
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222083
|
+
|
222084
|
+
|
222085
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222086
|
+
|
222087
|
+
|
222088
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222089
|
+
|
222090
|
+
|
222091
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222092
|
+
|
222093
|
+
|
222094
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222095
|
+
|
222096
|
+
|
222097
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222098
|
+
|
222099
|
+
|
222100
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222101
|
+
|
222102
|
+
|
222103
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222104
|
+
|
222105
|
+
|
222106
|
+
Started GET "/poll.png" for 127.0.0.1 at 2013-10-30 17:05:41 +0900
|
222107
|
+
|
222108
|
+
ActionController::RoutingError (No route matches [GET] "/poll.png"):
|
222109
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
222110
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
222111
|
+
railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
|
222112
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
|
222113
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
222114
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
|
222115
|
+
activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
|
222116
|
+
railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
|
222117
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
222118
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
222119
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
222120
|
+
activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
222121
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
222122
|
+
actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
222123
|
+
railties (4.0.0) lib/rails/engine.rb:511:in `call'
|
222124
|
+
railties (4.0.0) lib/rails/application.rb:97:in `call'
|
222125
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
222126
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
222127
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
222128
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
222129
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
222130
|
+
/home/tony/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
222131
|
+
|
222132
|
+
|
222133
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
|
222134
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms)
|
222135
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms)
|
222136
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
|
222137
|
+
Rendered /home/tony/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (55.4ms)
|
222138
|
+
|
222139
|
+
|
222140
|
+
Started GET "/resque_web/overview" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222141
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
222142
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.9ms)
|
222143
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.4ms)
|
222144
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222145
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (9.0ms)
|
222146
|
+
Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
|
222147
|
+
|
222148
|
+
|
222149
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222150
|
+
|
222151
|
+
|
222152
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222153
|
+
|
222154
|
+
|
222155
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222156
|
+
|
222157
|
+
|
222158
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222159
|
+
|
222160
|
+
|
222161
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222162
|
+
|
222163
|
+
|
222164
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222165
|
+
|
222166
|
+
|
222167
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222168
|
+
|
222169
|
+
|
222170
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222171
|
+
|
222172
|
+
|
222173
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222174
|
+
|
222175
|
+
|
222176
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222177
|
+
|
222178
|
+
|
222179
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222180
|
+
|
222181
|
+
|
222182
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222183
|
+
|
222184
|
+
|
222185
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222186
|
+
|
222187
|
+
|
222188
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222189
|
+
|
222190
|
+
|
222191
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222192
|
+
|
222193
|
+
|
222194
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222195
|
+
|
222196
|
+
|
222197
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222198
|
+
|
222199
|
+
|
222200
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222201
|
+
|
222202
|
+
|
222203
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222204
|
+
|
222205
|
+
|
222206
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222207
|
+
|
222208
|
+
|
222209
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222210
|
+
|
222211
|
+
|
222212
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222213
|
+
|
222214
|
+
|
222215
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:05:42 +0900
|
222216
|
+
|
222217
|
+
|
222218
|
+
Started GET "/resque_web/working" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222219
|
+
Processing by ResqueWeb::WorkingController#index as HTML
|
222220
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222221
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/index.html.erb within layouts/resque_web/application (2.8ms)
|
222222
|
+
Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.0ms)
|
222223
|
+
|
222224
|
+
|
222225
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222226
|
+
|
222227
|
+
|
222228
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222229
|
+
|
222230
|
+
|
222231
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222232
|
+
|
222233
|
+
|
222234
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222235
|
+
|
222236
|
+
|
222237
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222238
|
+
|
222239
|
+
|
222240
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222241
|
+
|
222242
|
+
|
222243
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222244
|
+
|
222245
|
+
|
222246
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222247
|
+
|
222248
|
+
|
222249
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222250
|
+
|
222251
|
+
|
222252
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222253
|
+
|
222254
|
+
|
222255
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222256
|
+
|
222257
|
+
|
222258
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222259
|
+
|
222260
|
+
|
222261
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222262
|
+
|
222263
|
+
|
222264
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:43 +0900
|
222265
|
+
|
222266
|
+
|
222267
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222268
|
+
|
222269
|
+
|
222270
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222271
|
+
|
222272
|
+
|
222273
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222274
|
+
|
222275
|
+
|
222276
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222277
|
+
|
222278
|
+
|
222279
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222280
|
+
|
222281
|
+
|
222282
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222283
|
+
|
222284
|
+
|
222285
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222286
|
+
|
222287
|
+
|
222288
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222289
|
+
|
222290
|
+
|
222291
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:05:44 +0900
|
222292
|
+
|
222293
|
+
|
222294
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222295
|
+
Processing by ResqueWeb::OverviewController#show as HTML
|
222296
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222297
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (3.1ms)
|
222298
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222299
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb within layouts/resque_web/application (7.4ms)
|
222300
|
+
Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
|
222301
|
+
|
222302
|
+
|
222303
|
+
Started GET "/assets/twitter-bootstrap-static/bootstrap.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222304
|
+
|
222305
|
+
|
222306
|
+
Started GET "/assets/resque_web/application.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222307
|
+
|
222308
|
+
|
222309
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222310
|
+
|
222311
|
+
|
222312
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222313
|
+
|
222314
|
+
|
222315
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222316
|
+
|
222317
|
+
|
222318
|
+
Started GET "/assets/twitter-bootstrap-static/fontawesome.css?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222319
|
+
|
222320
|
+
|
222321
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222322
|
+
|
222323
|
+
|
222324
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222325
|
+
|
222326
|
+
|
222327
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222328
|
+
|
222329
|
+
|
222330
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222331
|
+
|
222332
|
+
|
222333
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222334
|
+
|
222335
|
+
|
222336
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222337
|
+
|
222338
|
+
|
222339
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222340
|
+
|
222341
|
+
|
222342
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222343
|
+
|
222344
|
+
|
222345
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222346
|
+
|
222347
|
+
|
222348
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222349
|
+
|
222350
|
+
|
222351
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222352
|
+
|
222353
|
+
|
222354
|
+
Started GET "/assets/resque_web/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222355
|
+
|
222356
|
+
|
222357
|
+
Started GET "/assets/twitter/bootstrap.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222358
|
+
|
222359
|
+
|
222360
|
+
Started GET "/assets/resque_web/jquery.relative-date.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222361
|
+
|
222362
|
+
|
222363
|
+
Started GET "/assets/twitter/bootstrap/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222364
|
+
|
222365
|
+
|
222366
|
+
Started GET "/assets/resque_web/application.js?body=1" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222367
|
+
|
222368
|
+
|
222369
|
+
Started GET "/assets/resque_web/lifebuoy.png" for 127.0.0.1 at 2013-10-30 17:05:47 +0900
|
222370
|
+
|
222371
|
+
|
222372
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:05:54 +0900
|
222373
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222374
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.2ms)
|
222375
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (10.0ms)
|
222376
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.5ms)
|
222377
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (20.6ms)
|
222378
|
+
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
|
222379
|
+
|
222380
|
+
|
222381
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:05:56 +0900
|
222382
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222383
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.0ms)
|
222384
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.2ms)
|
222385
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222386
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.5ms)
|
222387
|
+
Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
|
222388
|
+
|
222389
|
+
|
222390
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:05:58 +0900
|
222391
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222392
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.1ms)
|
222393
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.8ms)
|
222394
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222395
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.3ms)
|
222396
|
+
Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
|
222397
|
+
|
222398
|
+
|
222399
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:00 +0900
|
222400
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222401
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.8ms)
|
222402
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.6ms)
|
222403
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222404
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.2ms)
|
222405
|
+
Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
|
222406
|
+
|
222407
|
+
|
222408
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:02 +0900
|
222409
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222410
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222411
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.3ms)
|
222412
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222413
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.7ms)
|
222414
|
+
Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
222415
|
+
|
222416
|
+
|
222417
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:04 +0900
|
222418
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222419
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (5.6ms)
|
222420
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (14.1ms)
|
222421
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222422
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (23.5ms)
|
222423
|
+
Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.0ms)
|
222424
|
+
|
222425
|
+
|
222426
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:06 +0900
|
222427
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222428
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.4ms)
|
222429
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.7ms)
|
222430
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222431
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.5ms)
|
222432
|
+
Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
222433
|
+
|
222434
|
+
|
222435
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:08 +0900
|
222436
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222437
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.2ms)
|
222438
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.9ms)
|
222439
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222440
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.7ms)
|
222441
|
+
Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
|
222442
|
+
|
222443
|
+
|
222444
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:10 +0900
|
222445
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222446
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.6ms)
|
222447
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.1ms)
|
222448
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222449
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.6ms)
|
222450
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
222451
|
+
|
222452
|
+
|
222453
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:12 +0900
|
222454
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222455
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222456
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.0ms)
|
222457
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.6ms)
|
222458
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.5ms)
|
222459
|
+
Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
|
222460
|
+
|
222461
|
+
|
222462
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:14 +0900
|
222463
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222464
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.0ms)
|
222465
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.6ms)
|
222466
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222467
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.8ms)
|
222468
|
+
Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
|
222469
|
+
|
222470
|
+
|
222471
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:16 +0900
|
222472
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222473
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
222474
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.4ms)
|
222475
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.2ms)
|
222476
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.4ms)
|
222477
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
222478
|
+
|
222479
|
+
|
222480
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:18 +0900
|
222481
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222482
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222483
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.6ms)
|
222484
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222485
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.2ms)
|
222486
|
+
Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
|
222487
|
+
|
222488
|
+
|
222489
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:20 +0900
|
222490
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222491
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222492
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.8ms)
|
222493
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222494
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.0ms)
|
222495
|
+
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
222496
|
+
|
222497
|
+
|
222498
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:22 +0900
|
222499
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222500
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222501
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (10.3ms)
|
222502
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222503
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (22.4ms)
|
222504
|
+
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
|
222505
|
+
|
222506
|
+
|
222507
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:24 +0900
|
222508
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222509
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.4ms)
|
222510
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.7ms)
|
222511
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222512
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (27.2ms)
|
222513
|
+
Completed 200 OK in 38ms (Views: 37.4ms | ActiveRecord: 0.0ms)
|
222514
|
+
|
222515
|
+
|
222516
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:26 +0900
|
222517
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222518
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
222519
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.1ms)
|
222520
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222521
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.8ms)
|
222522
|
+
Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
|
222523
|
+
|
222524
|
+
|
222525
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:28 +0900
|
222526
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222527
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222528
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.6ms)
|
222529
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (4.4ms)
|
222530
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.0ms)
|
222531
|
+
Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
|
222532
|
+
|
222533
|
+
|
222534
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:30 +0900
|
222535
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222536
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.5ms)
|
222537
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.9ms)
|
222538
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222539
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.1ms)
|
222540
|
+
Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
|
222541
|
+
|
222542
|
+
|
222543
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:32 +0900
|
222544
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222545
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
222546
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.1ms)
|
222547
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
222548
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.9ms)
|
222549
|
+
Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
|
222550
|
+
|
222551
|
+
|
222552
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:34 +0900
|
222553
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222554
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.5ms)
|
222555
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (4.9ms)
|
222556
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222557
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (11.5ms)
|
222558
|
+
Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|
222559
|
+
|
222560
|
+
|
222561
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:36 +0900
|
222562
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222563
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222564
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.7ms)
|
222565
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222566
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.8ms)
|
222567
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
222568
|
+
|
222569
|
+
|
222570
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:38 +0900
|
222571
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222572
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.6ms)
|
222573
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.4ms)
|
222574
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.3ms)
|
222575
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (24.8ms)
|
222576
|
+
Completed 200 OK in 86ms (Views: 86.1ms | ActiveRecord: 0.0ms)
|
222577
|
+
|
222578
|
+
|
222579
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:40 +0900
|
222580
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222581
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
222582
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.3ms)
|
222583
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
222584
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.2ms)
|
222585
|
+
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
222586
|
+
|
222587
|
+
|
222588
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:42 +0900
|
222589
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222590
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222591
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.5ms)
|
222592
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222593
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.2ms)
|
222594
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
|
222595
|
+
|
222596
|
+
|
222597
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:44 +0900
|
222598
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222599
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.6ms)
|
222600
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.1ms)
|
222601
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.3ms)
|
222602
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.8ms)
|
222603
|
+
Completed 200 OK in 24ms (Views: 24.2ms | ActiveRecord: 0.0ms)
|
222604
|
+
|
222605
|
+
|
222606
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:46 +0900
|
222607
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222608
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.9ms)
|
222609
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.4ms)
|
222610
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
222611
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.3ms)
|
222612
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
|
222613
|
+
|
222614
|
+
|
222615
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:48 +0900
|
222616
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222617
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222618
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.6ms)
|
222619
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222620
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.2ms)
|
222621
|
+
Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
|
222622
|
+
|
222623
|
+
|
222624
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:50 +0900
|
222625
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222626
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.3ms)
|
222627
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.3ms)
|
222628
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.7ms)
|
222629
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (24.9ms)
|
222630
|
+
Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
|
222631
|
+
|
222632
|
+
|
222633
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:52 +0900
|
222634
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222635
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222636
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.9ms)
|
222637
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
222638
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.8ms)
|
222639
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
|
222640
|
+
|
222641
|
+
|
222642
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:54 +0900
|
222643
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222644
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.3ms)
|
222645
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.2ms)
|
222646
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (2.7ms)
|
222647
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.9ms)
|
222648
|
+
Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
|
222649
|
+
|
222650
|
+
|
222651
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:56 +0900
|
222652
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222653
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
222654
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.0ms)
|
222655
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222656
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.4ms)
|
222657
|
+
Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
|
222658
|
+
|
222659
|
+
|
222660
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:06:58 +0900
|
222661
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222662
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.3ms)
|
222663
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.4ms)
|
222664
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222665
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.3ms)
|
222666
|
+
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
222667
|
+
|
222668
|
+
|
222669
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:00 +0900
|
222670
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222671
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222672
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.5ms)
|
222673
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222674
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.7ms)
|
222675
|
+
Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
222676
|
+
|
222677
|
+
|
222678
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:02 +0900
|
222679
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222680
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.5ms)
|
222681
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.7ms)
|
222682
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.1ms)
|
222683
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.0ms)
|
222684
|
+
Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
|
222685
|
+
|
222686
|
+
|
222687
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:04 +0900
|
222688
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222689
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222690
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.5ms)
|
222691
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222692
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.7ms)
|
222693
|
+
Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
222694
|
+
|
222695
|
+
|
222696
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:06 +0900
|
222697
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222698
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.9ms)
|
222699
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.3ms)
|
222700
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222701
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (20.3ms)
|
222702
|
+
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
222703
|
+
|
222704
|
+
|
222705
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:08 +0900
|
222706
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222707
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222708
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.5ms)
|
222709
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.1ms)
|
222710
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.8ms)
|
222711
|
+
Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
222712
|
+
|
222713
|
+
|
222714
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:10 +0900
|
222715
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222716
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.2ms)
|
222717
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.1ms)
|
222718
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222719
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.9ms)
|
222720
|
+
Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
222721
|
+
|
222722
|
+
|
222723
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:12 +0900
|
222724
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222725
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.4ms)
|
222726
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.0ms)
|
222727
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222728
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.5ms)
|
222729
|
+
Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
|
222730
|
+
|
222731
|
+
|
222732
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:14 +0900
|
222733
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222734
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.0ms)
|
222735
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.3ms)
|
222736
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222737
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (12.2ms)
|
222738
|
+
Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
|
222739
|
+
|
222740
|
+
|
222741
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:16 +0900
|
222742
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222743
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.8ms)
|
222744
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.6ms)
|
222745
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222746
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.2ms)
|
222747
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
|
222748
|
+
|
222749
|
+
|
222750
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:18 +0900
|
222751
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222752
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.2ms)
|
222753
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.1ms)
|
222754
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222755
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.3ms)
|
222756
|
+
Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
|
222757
|
+
|
222758
|
+
|
222759
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:20 +0900
|
222760
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222761
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.7ms)
|
222762
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.5ms)
|
222763
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222764
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.0ms)
|
222765
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
222766
|
+
|
222767
|
+
|
222768
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:22 +0900
|
222769
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222770
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222771
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.5ms)
|
222772
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222773
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.2ms)
|
222774
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
222775
|
+
|
222776
|
+
|
222777
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:24 +0900
|
222778
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222779
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.4ms)
|
222780
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.0ms)
|
222781
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.8ms)
|
222782
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.9ms)
|
222783
|
+
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
222784
|
+
|
222785
|
+
|
222786
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:26 +0900
|
222787
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222788
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.8ms)
|
222789
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.4ms)
|
222790
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222791
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.5ms)
|
222792
|
+
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
222793
|
+
|
222794
|
+
|
222795
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:28 +0900
|
222796
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222797
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.7ms)
|
222798
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.2ms)
|
222799
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222800
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.0ms)
|
222801
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
222802
|
+
|
222803
|
+
|
222804
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:30 +0900
|
222805
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222806
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.9ms)
|
222807
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.3ms)
|
222808
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.1ms)
|
222809
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (22.8ms)
|
222810
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
222811
|
+
|
222812
|
+
|
222813
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:32 +0900
|
222814
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222815
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.4ms)
|
222816
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.2ms)
|
222817
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222818
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.4ms)
|
222819
|
+
Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
|
222820
|
+
|
222821
|
+
|
222822
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:34 +0900
|
222823
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222824
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222825
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.7ms)
|
222826
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222827
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.3ms)
|
222828
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
|
222829
|
+
|
222830
|
+
|
222831
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:36 +0900
|
222832
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222833
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222834
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.5ms)
|
222835
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222836
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (20.9ms)
|
222837
|
+
Completed 200 OK in 26ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
222838
|
+
|
222839
|
+
|
222840
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:38 +0900
|
222841
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222842
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222843
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.6ms)
|
222844
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222845
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.1ms)
|
222846
|
+
Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
|
222847
|
+
|
222848
|
+
|
222849
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:40 +0900
|
222850
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222851
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.1ms)
|
222852
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.1ms)
|
222853
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222854
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.9ms)
|
222855
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
|
222856
|
+
|
222857
|
+
|
222858
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:42 +0900
|
222859
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222860
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
222861
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.0ms)
|
222862
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222863
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.8ms)
|
222864
|
+
Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
222865
|
+
|
222866
|
+
|
222867
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:44 +0900
|
222868
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222869
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.7ms)
|
222870
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.0ms)
|
222871
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222872
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.1ms)
|
222873
|
+
Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
|
222874
|
+
|
222875
|
+
|
222876
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:46 +0900
|
222877
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222878
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222879
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.1ms)
|
222880
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.0ms)
|
222881
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.5ms)
|
222882
|
+
Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
|
222883
|
+
|
222884
|
+
|
222885
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:48 +0900
|
222886
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222887
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.1ms)
|
222888
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.6ms)
|
222889
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.4ms)
|
222890
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.3ms)
|
222891
|
+
Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
222892
|
+
|
222893
|
+
|
222894
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:50 +0900
|
222895
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222896
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.6ms)
|
222897
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.4ms)
|
222898
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222899
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.5ms)
|
222900
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
|
222901
|
+
|
222902
|
+
|
222903
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:52 +0900
|
222904
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222905
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.7ms)
|
222906
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.9ms)
|
222907
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222908
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.8ms)
|
222909
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
222910
|
+
|
222911
|
+
|
222912
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:54 +0900
|
222913
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222914
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.4ms)
|
222915
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.6ms)
|
222916
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.6ms)
|
222917
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.4ms)
|
222918
|
+
Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
222919
|
+
|
222920
|
+
|
222921
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:56 +0900
|
222922
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222923
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.0ms)
|
222924
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.6ms)
|
222925
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222926
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (18.9ms)
|
222927
|
+
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms)
|
222928
|
+
|
222929
|
+
|
222930
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:07:58 +0900
|
222931
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222932
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.1ms)
|
222933
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (10.1ms)
|
222934
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222935
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (24.6ms)
|
222936
|
+
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
222937
|
+
|
222938
|
+
|
222939
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:00 +0900
|
222940
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222941
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.0ms)
|
222942
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.9ms)
|
222943
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222944
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (25.0ms)
|
222945
|
+
Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms)
|
222946
|
+
|
222947
|
+
|
222948
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:02 +0900
|
222949
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222950
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.8ms)
|
222951
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (10.4ms)
|
222952
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
222953
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (25.4ms)
|
222954
|
+
Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
|
222955
|
+
|
222956
|
+
|
222957
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:04 +0900
|
222958
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222959
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.6ms)
|
222960
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.2ms)
|
222961
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.7ms)
|
222962
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (26.4ms)
|
222963
|
+
Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.0ms)
|
222964
|
+
|
222965
|
+
|
222966
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:06 +0900
|
222967
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222968
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.8ms)
|
222969
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.8ms)
|
222970
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.7ms)
|
222971
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (22.9ms)
|
222972
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
222973
|
+
|
222974
|
+
|
222975
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:08 +0900
|
222976
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222977
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.7ms)
|
222978
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (10.2ms)
|
222979
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.3ms)
|
222980
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (23.4ms)
|
222981
|
+
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
222982
|
+
|
222983
|
+
|
222984
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:10 +0900
|
222985
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222986
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.6ms)
|
222987
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (9.8ms)
|
222988
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
222989
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (23.5ms)
|
222990
|
+
Completed 200 OK in 29ms (Views: 29.1ms | ActiveRecord: 0.0ms)
|
222991
|
+
|
222992
|
+
|
222993
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:12 +0900
|
222994
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
222995
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.7ms)
|
222996
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.1ms)
|
222997
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
222998
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (19.6ms)
|
222999
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
223000
|
+
|
223001
|
+
|
223002
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:14 +0900
|
223003
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223004
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.4ms)
|
223005
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.1ms)
|
223006
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
223007
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (14.6ms)
|
223008
|
+
Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
223009
|
+
|
223010
|
+
|
223011
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:16 +0900
|
223012
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223013
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.6ms)
|
223014
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (5.1ms)
|
223015
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (1.4ms)
|
223016
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (15.7ms)
|
223017
|
+
Completed 200 OK in 19ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
223018
|
+
|
223019
|
+
|
223020
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:18 +0900
|
223021
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223022
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (2.3ms)
|
223023
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.9ms)
|
223024
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
223025
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (21.4ms)
|
223026
|
+
Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
|
223027
|
+
|
223028
|
+
|
223029
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:20 +0900
|
223030
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223031
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.7ms)
|
223032
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (7.1ms)
|
223033
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.6ms)
|
223034
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (16.8ms)
|
223035
|
+
Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
|
223036
|
+
|
223037
|
+
|
223038
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:22 +0900
|
223039
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223040
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (3.3ms)
|
223041
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (8.7ms)
|
223042
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.8ms)
|
223043
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.4ms)
|
223044
|
+
Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
|
223045
|
+
|
223046
|
+
|
223047
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:24 +0900
|
223048
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223049
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
223050
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.4ms)
|
223051
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.9ms)
|
223052
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (17.7ms)
|
223053
|
+
Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
223054
|
+
|
223055
|
+
|
223056
|
+
Started GET "/resque_web/" for 127.0.0.1 at 2013-10-30 17:08:26 +0900
|
223057
|
+
Processing by ResqueWeb::OverviewController#show as TEXT
|
223058
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues_basic.html.erb (1.9ms)
|
223059
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/queues/_queues.html.erb (6.3ms)
|
223060
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/working/_working.html.erb (0.5ms)
|
223061
|
+
Rendered /home/tony/src/resque_web/app/views/resque_web/overview/show.html.erb (13.0ms)
|
223062
|
+
Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
|