resque_manager 3.3.1 → 3.3.2
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/app/controllers/resque_manager/resque_controller.rb +248 -245
- data/app/views/resque_manager/resque/status.html.erb +1 -1
- data/app/views/resque_manager/resque/statuses.html.erb +2 -2
- data/config/routes.rb +1 -0
- data/lib/resque_manager/version.rb +1 -1
- data/lib/tasks/worker.rake +50 -1
- data/test/dummy/log/test.log +1249 -0
- data/test/functional/resque_manager/resque_controller_test.rb +30 -17
- metadata +2 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= render(:partial => 'status_styles') %>
|
2
2
|
|
3
3
|
<h1 class='wi'>Statuses: <%= @status.uuid %>/<%= @status.name %></h1>
|
4
|
-
<p class='intro'>Viewing a specific job created with JobWithStatus. <%= link_to('Return to the list of statuses',
|
4
|
+
<p class='intro'>Viewing a specific job created with JobWithStatus. <%= link_to('Return to the list of statuses', statuses_resque_path) %></p>
|
5
5
|
|
6
6
|
<div class="status-holder" rel="<%= @status.status %>" id="status_<%= @status.uuid %>">
|
7
7
|
<div class="status-progress">
|
@@ -21,7 +21,7 @@
|
|
21
21
|
<% unless @statuses.empty? %>
|
22
22
|
<% @statuses.each do |status| %>
|
23
23
|
<tr>
|
24
|
-
<td><%= link_to(status.uuid,
|
24
|
+
<td><%= link_to(status.uuid, status_resque_path(status.uuid)) %></td>
|
25
25
|
<td><%= status.name %></td>
|
26
26
|
<td class="status status-<%= status.status %>"><%= status.status %></td>
|
27
27
|
<td class="time"><%= format_time(Time.zone.parse(status.time.to_s)) %></td>
|
@@ -30,7 +30,7 @@
|
|
30
30
|
<div class="progress-pct"><%= status.pct_complete ? "#{status.pct_complete}%" : '' %></div>
|
31
31
|
</td>
|
32
32
|
<td><%= status.message.to_s.html_safe %></td>
|
33
|
-
<td><% if status.killable? %><%= button_to('Kill',
|
33
|
+
<td><% if status.killable? %><%= button_to('Kill', kill_resque_path(status.uuid), :class => 'kill') %><% end %></td>
|
34
34
|
</tr>
|
35
35
|
<% end %>
|
36
36
|
<% else %>
|
data/config/routes.rb
CHANGED
data/lib/tasks/worker.rake
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
+
require 'resque/tasks'
|
2
|
+
Rake::Task["resque:work"].clear # clear out the work task defined in resque so we can redefine it.
|
3
|
+
|
1
4
|
namespace :resque do
|
2
5
|
|
3
6
|
desc "Start a Resque worker, each queue will create it's own worker in a separate thread"
|
4
|
-
task :work => :setup do
|
7
|
+
task :work => [:fix_eager_load_paths, :preload, :setup] do
|
5
8
|
require 'resque'
|
6
9
|
|
7
10
|
worker = nil
|
@@ -49,6 +52,46 @@ namespace :resque do
|
|
49
52
|
mworker.work(ENV['INTERVAL'] || 5) # interval, will block
|
50
53
|
end
|
51
54
|
|
55
|
+
# If something really bad happens and you get hudreds or thousands of failures, this can help
|
56
|
+
# This task can take a while. Expect to requeue maybe 500/min.
|
57
|
+
desc "Requeue all failed jobs, or for specified class. resque:requeue_class[TrialAnalysis] or [all]"
|
58
|
+
task :requeue_class, [:klass] => :environment do |t, args|
|
59
|
+
require 'resque/failure/redis'
|
60
|
+
|
61
|
+
module Resque
|
62
|
+
module Failure
|
63
|
+
|
64
|
+
# Requeues all failed jobs or for a given class
|
65
|
+
def self.requeue_class(failed_class)
|
66
|
+
length = Resque.redis.llen(:failed)
|
67
|
+
puts "#{length} items in failed queue. Preparing to requeue all items of class: #{failed_class}."
|
68
|
+
i = 0
|
69
|
+
skipped = 0
|
70
|
+
requeued = 0
|
71
|
+
length.times do
|
72
|
+
f = Resque.list_range(:failed, length, 1)
|
73
|
+
if f && (failed_class.to_s.downcase == "all" || (f["payload"]["class"].to_s.downcase == failed_class.to_s.downcase))
|
74
|
+
Resque.redis.lrem(:failed, 0, f.to_json)
|
75
|
+
args = f["payload"]["args"]
|
76
|
+
Resque.enqueue(eval(f["payload"]["class"]), *args)
|
77
|
+
requeued += 1
|
78
|
+
puts "#{requeued} requeued" if requeued % 100 == 0
|
79
|
+
else
|
80
|
+
length -= 1
|
81
|
+
skipped += 1
|
82
|
+
puts "#{skipped} skipped" if skipped % 100 == 0
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
args.with_defaults :klass => "all"
|
90
|
+
klass = args.klass
|
91
|
+
Resque::Failure.requeue_class(klass)
|
92
|
+
puts "Finished\n#{requeued} requeued.\n#{skipped} skipped."
|
93
|
+
end
|
94
|
+
|
52
95
|
desc "Restart all the workers"
|
53
96
|
task :restart_workers => :setup do
|
54
97
|
require 'resque'
|
@@ -126,4 +169,10 @@ namespace :resque do
|
|
126
169
|
end
|
127
170
|
end
|
128
171
|
|
172
|
+
# there is no need to load controllers for a worker, and it may cause load errors.
|
173
|
+
task :fix_eager_load_paths => :setup do
|
174
|
+
Rails.application.config.eager_load_paths -= ["#{Rails.root}/app/controllers"]
|
175
|
+
Rails.application.config.eager_load_paths -= ["#{Rails.root}/app/helpers"]
|
176
|
+
end
|
177
|
+
|
129
178
|
end
|
data/test/dummy/log/test.log
CHANGED
@@ -640,3 +640,1252 @@ Completed 200 OK in 7ms (Views: 6.5ms)
|
|
640
640
|
Processing by ResqueManager::ResqueController#working as HTML
|
641
641
|
Filter chain halted as :check_connection rendered or redirected
|
642
642
|
Completed 200 OK in 4ms (Views: 4.1ms)
|
643
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
644
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
645
|
+
Redirected to http://test.host/resque/schedule
|
646
|
+
Completed 302 Found in 2ms
|
647
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
648
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
649
|
+
Redirected to http://test.host/resque/schedule
|
650
|
+
Completed 302 Found in 1ms
|
651
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
652
|
+
Redirected to http://test.host/resque/cleaner
|
653
|
+
Completed 302 Found in 1ms
|
654
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
655
|
+
Redirected to http://test.host/resque/statuses
|
656
|
+
Completed 302 Found in 1ms
|
657
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
658
|
+
Redirected to http://test.host/resque/workers
|
659
|
+
Completed 302 Found in 1ms
|
660
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
661
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21507:70350570653400::"}
|
662
|
+
Redirected to http://test.host/resque/workers
|
663
|
+
Completed 302 Found in 2ms
|
664
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
665
|
+
Parameters: {"id"=>"UUID"}
|
666
|
+
Redirected to http://test.host/resque/statuses
|
667
|
+
Completed 302 Found in 3ms
|
668
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
669
|
+
Redirected to http://test.host/resque/workers
|
670
|
+
Completed 302 Found in 1ms
|
671
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
672
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21507:70350570653400::"}
|
673
|
+
Redirected to http://test.host/resque/workers
|
674
|
+
Completed 302 Found in 2ms
|
675
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
676
|
+
Parameters: {"page"=>"overview"}
|
677
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (2.8ms)
|
678
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.9ms)
|
679
|
+
Completed 200 OK in 31ms (Views: 1.7ms)
|
680
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
681
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
682
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
683
|
+
Redirected to http://test.host/resque/schedule
|
684
|
+
Completed 302 Found in 1ms
|
685
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
686
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
687
|
+
Redirected to http://test.host/resque/schedule
|
688
|
+
Completed 302 Found in 1ms
|
689
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
690
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
691
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
692
|
+
Completed 302 Found in 1ms
|
693
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
694
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
695
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
696
|
+
Completed 302 Found in 1ms
|
697
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
698
|
+
Redirected to http://test.host/resque/workers
|
699
|
+
Completed 302 Found in 1ms
|
700
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
701
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21507:70350570653400::"}
|
702
|
+
Redirected to http://test.host/resque/workers
|
703
|
+
Completed 302 Found in 1ms
|
704
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
705
|
+
Completed 200 OK in 41ms (Views: 10.5ms)
|
706
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
707
|
+
Redirected to http://test.host/resque/overview
|
708
|
+
Completed 302 Found in 2ms
|
709
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
710
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
711
|
+
Redirected to http://test.host/resque/schedule
|
712
|
+
Completed 302 Found in 1ms
|
713
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
714
|
+
Redirected to http://test.host/resque/workers
|
715
|
+
Completed 302 Found in 1ms
|
716
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
717
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21507:70350570653400::"}
|
718
|
+
Redirected to http://test.host/resque/workers
|
719
|
+
Completed 302 Found in 1ms
|
720
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
721
|
+
Redirected to http://test.host/resque/stats?id=resque
|
722
|
+
Completed 302 Found in 1ms
|
723
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
724
|
+
Parameters: {"id"=>"txt"}
|
725
|
+
Completed 200 OK in 3ms (Views: 0.6ms)
|
726
|
+
Processing by ResqueManager::ResqueController#status as JS
|
727
|
+
Parameters: {"id"=>"UUID"}
|
728
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
729
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
730
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.6ms)
|
731
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
732
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
733
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
734
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
735
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
736
|
+
Redirected to http://test.host/resque/schedule
|
737
|
+
Completed 302 Found in 1ms
|
738
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
739
|
+
Redirected to http://test.host/resque/workers
|
740
|
+
Completed 302 Found in 1ms
|
741
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
742
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21507:70350570653400::"}
|
743
|
+
Redirected to http://test.host/resque/workers
|
744
|
+
Completed 302 Found in 1ms
|
745
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
746
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
747
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
748
|
+
Filter chain halted as :check_connection rendered or redirected
|
749
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
750
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
751
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
752
|
+
Redirected to http://test.host/resque/schedule
|
753
|
+
Completed 302 Found in 3ms
|
754
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
755
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
756
|
+
Redirected to http://test.host/resque/schedule
|
757
|
+
Completed 302 Found in 2ms
|
758
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
759
|
+
Redirected to http://test.host/resque/cleaner
|
760
|
+
Completed 302 Found in 2ms
|
761
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
762
|
+
Redirected to http://test.host/resque/statuses
|
763
|
+
Completed 302 Found in 1ms
|
764
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
765
|
+
Redirected to http://test.host/resque/workers
|
766
|
+
Completed 302 Found in 2ms
|
767
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
768
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21641:70185210218200::"}
|
769
|
+
Redirected to http://test.host/resque/workers
|
770
|
+
Completed 302 Found in 2ms
|
771
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
772
|
+
Parameters: {"id"=>"UUID"}
|
773
|
+
Redirected to http://test.host/resque/statuses
|
774
|
+
Completed 302 Found in 4ms
|
775
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
776
|
+
Redirected to http://test.host/resque/workers
|
777
|
+
Completed 302 Found in 2ms
|
778
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
779
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21641:70185210218200::"}
|
780
|
+
Redirected to http://test.host/resque/workers
|
781
|
+
Completed 302 Found in 1ms
|
782
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
783
|
+
Parameters: {"page"=>"overview"}
|
784
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (3.1ms)
|
785
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.9ms)
|
786
|
+
Completed 200 OK in 32ms (Views: 1.8ms)
|
787
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
788
|
+
Completed 200 OK in 11ms (Views: 10.0ms)
|
789
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
790
|
+
Redirected to http://test.host/resque/schedule
|
791
|
+
Completed 302 Found in 2ms
|
792
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
793
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
794
|
+
Redirected to http://test.host/resque/schedule
|
795
|
+
Completed 302 Found in 1ms
|
796
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
797
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
798
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
799
|
+
Completed 302 Found in 1ms
|
800
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
801
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
802
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
803
|
+
Completed 302 Found in 1ms
|
804
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
805
|
+
Redirected to http://test.host/resque/workers
|
806
|
+
Completed 302 Found in 2ms
|
807
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
808
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21641:70185210218200::"}
|
809
|
+
Redirected to http://test.host/resque/workers
|
810
|
+
Completed 302 Found in 2ms
|
811
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
812
|
+
Completed 200 OK in 56ms (Views: 17.5ms)
|
813
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
814
|
+
Redirected to http://test.host/resque/overview
|
815
|
+
Completed 302 Found in 2ms
|
816
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
817
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
818
|
+
Redirected to http://test.host/resque/schedule
|
819
|
+
Completed 302 Found in 2ms
|
820
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
821
|
+
Redirected to http://test.host/resque/workers
|
822
|
+
Completed 302 Found in 3ms
|
823
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
824
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21641:70185210218200::"}
|
825
|
+
Redirected to http://test.host/resque/workers
|
826
|
+
Completed 302 Found in 1ms
|
827
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
828
|
+
Redirected to http://test.host/resque/stats?id=resque
|
829
|
+
Completed 302 Found in 2ms
|
830
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
831
|
+
Parameters: {"id"=>"txt"}
|
832
|
+
Completed 200 OK in 3ms (Views: 0.6ms)
|
833
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
834
|
+
Parameters: {"id"=>"UUID"}
|
835
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (1.0ms)
|
836
|
+
Completed 500 Internal Server Error in 18ms
|
837
|
+
Processing by ResqueManager::ResqueController#status as JS
|
838
|
+
Parameters: {"id"=>"UUID"}
|
839
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
840
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
841
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
842
|
+
Completed 200 OK in 7ms (Views: 0.5ms)
|
843
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
844
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
845
|
+
Completed 500 Internal Server Error in 7ms
|
846
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
847
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
848
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
849
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
850
|
+
Redirected to http://test.host/resque/schedule
|
851
|
+
Completed 302 Found in 2ms
|
852
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
853
|
+
Redirected to http://test.host/resque/workers
|
854
|
+
Completed 302 Found in 2ms
|
855
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
856
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21641:70185210218200::"}
|
857
|
+
Redirected to http://test.host/resque/workers
|
858
|
+
Completed 302 Found in 2ms
|
859
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
860
|
+
Completed 200 OK in 12ms (Views: 10.9ms)
|
861
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
862
|
+
Filter chain halted as :check_connection rendered or redirected
|
863
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
864
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
865
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
866
|
+
Redirected to http://test.host/resque/schedule
|
867
|
+
Completed 302 Found in 2ms
|
868
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
869
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
870
|
+
Redirected to http://test.host/resque/schedule
|
871
|
+
Completed 302 Found in 1ms
|
872
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
873
|
+
Redirected to http://test.host/resque/cleaner
|
874
|
+
Completed 302 Found in 2ms
|
875
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
876
|
+
Redirected to http://test.host/resque/statuses
|
877
|
+
Completed 302 Found in 2ms
|
878
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
879
|
+
Redirected to http://test.host/resque/workers
|
880
|
+
Completed 302 Found in 2ms
|
881
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
882
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21729:70229120386780::"}
|
883
|
+
Redirected to http://test.host/resque/workers
|
884
|
+
Completed 302 Found in 2ms
|
885
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
886
|
+
Parameters: {"id"=>"UUID"}
|
887
|
+
Redirected to http://test.host/resque/statuses
|
888
|
+
Completed 302 Found in 4ms
|
889
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
890
|
+
Redirected to http://test.host/resque/workers
|
891
|
+
Completed 302 Found in 2ms
|
892
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
893
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21729:70229120386780::"}
|
894
|
+
Redirected to http://test.host/resque/workers
|
895
|
+
Completed 302 Found in 2ms
|
896
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
897
|
+
Parameters: {"page"=>"overview"}
|
898
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (4.2ms)
|
899
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (3.0ms)
|
900
|
+
Completed 200 OK in 34ms (Views: 2.1ms)
|
901
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
902
|
+
Completed 200 OK in 13ms (Views: 11.8ms)
|
903
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
904
|
+
Redirected to http://test.host/resque/schedule
|
905
|
+
Completed 302 Found in 2ms
|
906
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
907
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
908
|
+
Redirected to http://test.host/resque/schedule
|
909
|
+
Completed 302 Found in 1ms
|
910
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
911
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
912
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
913
|
+
Completed 302 Found in 1ms
|
914
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
915
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
916
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
917
|
+
Completed 302 Found in 1ms
|
918
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
919
|
+
Redirected to http://test.host/resque/workers
|
920
|
+
Completed 302 Found in 1ms
|
921
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
922
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21729:70229120386780::"}
|
923
|
+
Redirected to http://test.host/resque/workers
|
924
|
+
Completed 302 Found in 2ms
|
925
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
926
|
+
Completed 200 OK in 51ms (Views: 14.2ms)
|
927
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
928
|
+
Redirected to http://test.host/resque/overview
|
929
|
+
Completed 302 Found in 2ms
|
930
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
931
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
932
|
+
Redirected to http://test.host/resque/schedule
|
933
|
+
Completed 302 Found in 2ms
|
934
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
935
|
+
Redirected to http://test.host/resque/workers
|
936
|
+
Completed 302 Found in 2ms
|
937
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
938
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21729:70229120386780::"}
|
939
|
+
Redirected to http://test.host/resque/workers
|
940
|
+
Completed 302 Found in 2ms
|
941
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
942
|
+
Redirected to http://test.host/resque/stats?id=resque
|
943
|
+
Completed 302 Found in 2ms
|
944
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
945
|
+
Parameters: {"id"=>"txt"}
|
946
|
+
Completed 200 OK in 3ms (Views: 0.7ms)
|
947
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
948
|
+
Parameters: {"id"=>"UUID"}
|
949
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.7ms)
|
950
|
+
Completed 500 Internal Server Error in 14ms
|
951
|
+
Processing by ResqueManager::ResqueController#status as JS
|
952
|
+
Parameters: {"id"=>"UUID"}
|
953
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
954
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
955
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
956
|
+
Completed 200 OK in 5ms (Views: 0.3ms)
|
957
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
958
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
959
|
+
Completed 500 Internal Server Error in 4ms
|
960
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
961
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
962
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
963
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
964
|
+
Redirected to http://test.host/resque/schedule
|
965
|
+
Completed 302 Found in 2ms
|
966
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
967
|
+
Redirected to http://test.host/resque/workers
|
968
|
+
Completed 302 Found in 2ms
|
969
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
970
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21729:70229120386780::"}
|
971
|
+
Redirected to http://test.host/resque/workers
|
972
|
+
Completed 302 Found in 2ms
|
973
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
974
|
+
Completed 200 OK in 9ms (Views: 7.9ms)
|
975
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
976
|
+
Filter chain halted as :check_connection rendered or redirected
|
977
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
978
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
979
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
980
|
+
Redirected to http://test.host/resque/schedule
|
981
|
+
Completed 302 Found in 2ms
|
982
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
983
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
984
|
+
Redirected to http://test.host/resque/schedule
|
985
|
+
Completed 302 Found in 1ms
|
986
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
987
|
+
Redirected to http://test.host/resque/cleaner
|
988
|
+
Completed 302 Found in 2ms
|
989
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
990
|
+
Redirected to http://test.host/resque/statuses
|
991
|
+
Completed 302 Found in 2ms
|
992
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
993
|
+
Redirected to http://test.host/resque/workers
|
994
|
+
Completed 302 Found in 2ms
|
995
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
996
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21792:70156567316180::"}
|
997
|
+
Redirected to http://test.host/resque/workers
|
998
|
+
Completed 302 Found in 2ms
|
999
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1000
|
+
Parameters: {"id"=>"UUID"}
|
1001
|
+
Redirected to http://test.host/resque/statuses
|
1002
|
+
Completed 302 Found in 4ms
|
1003
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1004
|
+
Redirected to http://test.host/resque/workers
|
1005
|
+
Completed 302 Found in 2ms
|
1006
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1007
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21792:70156567316180::"}
|
1008
|
+
Redirected to http://test.host/resque/workers
|
1009
|
+
Completed 302 Found in 2ms
|
1010
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1011
|
+
Parameters: {"page"=>"overview"}
|
1012
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (4.4ms)
|
1013
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (3.2ms)
|
1014
|
+
Completed 200 OK in 38ms (Views: 1.9ms)
|
1015
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1016
|
+
Completed 200 OK in 12ms (Views: 10.6ms)
|
1017
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1018
|
+
Redirected to http://test.host/resque/schedule
|
1019
|
+
Completed 302 Found in 1ms
|
1020
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1021
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1022
|
+
Redirected to http://test.host/resque/schedule
|
1023
|
+
Completed 302 Found in 1ms
|
1024
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1025
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1026
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1027
|
+
Completed 302 Found in 1ms
|
1028
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1029
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1030
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1031
|
+
Completed 302 Found in 1ms
|
1032
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1033
|
+
Redirected to http://test.host/resque/workers
|
1034
|
+
Completed 302 Found in 2ms
|
1035
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1036
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21792:70156567316180::"}
|
1037
|
+
Redirected to http://test.host/resque/workers
|
1038
|
+
Completed 302 Found in 2ms
|
1039
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1040
|
+
Completed 200 OK in 64ms (Views: 17.4ms)
|
1041
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1042
|
+
Redirected to http://test.host/resque/overview
|
1043
|
+
Completed 302 Found in 2ms
|
1044
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1045
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1046
|
+
Redirected to http://test.host/resque/schedule
|
1047
|
+
Completed 302 Found in 3ms
|
1048
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1049
|
+
Redirected to http://test.host/resque/workers
|
1050
|
+
Completed 302 Found in 4ms
|
1051
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1052
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21792:70156567316180::"}
|
1053
|
+
Redirected to http://test.host/resque/workers
|
1054
|
+
Completed 302 Found in 3ms
|
1055
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1056
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1057
|
+
Completed 302 Found in 2ms
|
1058
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1059
|
+
Parameters: {"id"=>"txt"}
|
1060
|
+
Completed 200 OK in 4ms (Views: 0.7ms)
|
1061
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1062
|
+
Parameters: {"id"=>"UUID"}
|
1063
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.7ms)
|
1064
|
+
Completed 500 Internal Server Error in 14ms
|
1065
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1066
|
+
Parameters: {"id"=>"UUID"}
|
1067
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
1068
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1069
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1070
|
+
Completed 200 OK in 7ms (Views: 0.4ms)
|
1071
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1072
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1073
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1074
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1075
|
+
Redirected to http://test.host/resque/schedule
|
1076
|
+
Completed 302 Found in 2ms
|
1077
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1078
|
+
Redirected to http://test.host/resque/workers
|
1079
|
+
Completed 302 Found in 2ms
|
1080
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1081
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21792:70156567316180::"}
|
1082
|
+
Redirected to http://test.host/resque/workers
|
1083
|
+
Completed 302 Found in 2ms
|
1084
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1085
|
+
Completed 200 OK in 14ms (Views: 11.5ms)
|
1086
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1087
|
+
Filter chain halted as :check_connection rendered or redirected
|
1088
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
1089
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1090
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1091
|
+
Redirected to http://test.host/resque/schedule
|
1092
|
+
Completed 302 Found in 3ms
|
1093
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1094
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1095
|
+
Redirected to http://test.host/resque/schedule
|
1096
|
+
Completed 302 Found in 2ms
|
1097
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1098
|
+
Redirected to http://test.host/resque/cleaner
|
1099
|
+
Completed 302 Found in 2ms
|
1100
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1101
|
+
Redirected to http://test.host/resque/statuses
|
1102
|
+
Completed 302 Found in 2ms
|
1103
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1104
|
+
Redirected to http://test.host/resque/workers
|
1105
|
+
Completed 302 Found in 1ms
|
1106
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1107
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21991:70313253930700::"}
|
1108
|
+
Redirected to http://test.host/resque/workers
|
1109
|
+
Completed 302 Found in 2ms
|
1110
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1111
|
+
Parameters: {"id"=>"UUID"}
|
1112
|
+
Redirected to http://test.host/resque/statuses
|
1113
|
+
Completed 302 Found in 4ms
|
1114
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1115
|
+
Redirected to http://test.host/resque/workers
|
1116
|
+
Completed 302 Found in 2ms
|
1117
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1118
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21991:70313253930700::"}
|
1119
|
+
Redirected to http://test.host/resque/workers
|
1120
|
+
Completed 302 Found in 2ms
|
1121
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1122
|
+
Parameters: {"page"=>"overview"}
|
1123
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (3.7ms)
|
1124
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (3.5ms)
|
1125
|
+
Completed 200 OK in 33ms (Views: 2.2ms)
|
1126
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1127
|
+
Completed 200 OK in 11ms (Views: 10.4ms)
|
1128
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1129
|
+
Redirected to http://test.host/resque/schedule
|
1130
|
+
Completed 302 Found in 2ms
|
1131
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1132
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1133
|
+
Redirected to http://test.host/resque/schedule
|
1134
|
+
Completed 302 Found in 1ms
|
1135
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1136
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1137
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1138
|
+
Completed 302 Found in 1ms
|
1139
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1140
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1141
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1142
|
+
Completed 302 Found in 1ms
|
1143
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1144
|
+
Redirected to http://test.host/resque/workers
|
1145
|
+
Completed 302 Found in 2ms
|
1146
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1147
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21991:70313253930700::"}
|
1148
|
+
Redirected to http://test.host/resque/workers
|
1149
|
+
Completed 302 Found in 1ms
|
1150
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1151
|
+
Completed 200 OK in 47ms (Views: 14.1ms)
|
1152
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1153
|
+
Redirected to http://test.host/resque/overview
|
1154
|
+
Completed 302 Found in 2ms
|
1155
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1156
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1157
|
+
Redirected to http://test.host/resque/schedule
|
1158
|
+
Completed 302 Found in 2ms
|
1159
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1160
|
+
Redirected to http://test.host/resque/workers
|
1161
|
+
Completed 302 Found in 2ms
|
1162
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1163
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21991:70313253930700::"}
|
1164
|
+
Redirected to http://test.host/resque/workers
|
1165
|
+
Completed 302 Found in 2ms
|
1166
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1167
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1168
|
+
Completed 302 Found in 2ms
|
1169
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1170
|
+
Parameters: {"id"=>"txt"}
|
1171
|
+
Completed 200 OK in 3ms (Views: 0.8ms)
|
1172
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1173
|
+
Parameters: {"id"=>"UUID"}
|
1174
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.7ms)
|
1175
|
+
Completed 500 Internal Server Error in 19ms
|
1176
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1177
|
+
Parameters: {"id"=>"UUID"}
|
1178
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1179
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1180
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1181
|
+
Completed 200 OK in 7ms (Views: 0.5ms)
|
1182
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1183
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1184
|
+
Completed 500 Internal Server Error in 5ms
|
1185
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1186
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
1187
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1188
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1189
|
+
Redirected to http://test.host/resque/schedule
|
1190
|
+
Completed 302 Found in 3ms
|
1191
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1192
|
+
Redirected to http://test.host/resque/workers
|
1193
|
+
Completed 302 Found in 2ms
|
1194
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1195
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):21991:70313253930700::"}
|
1196
|
+
Redirected to http://test.host/resque/workers
|
1197
|
+
Completed 302 Found in 2ms
|
1198
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1199
|
+
Completed 200 OK in 11ms (Views: 9.9ms)
|
1200
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1201
|
+
Filter chain halted as :check_connection rendered or redirected
|
1202
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
1203
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1204
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1205
|
+
Redirected to http://test.host/resque/schedule
|
1206
|
+
Completed 302 Found in 2ms
|
1207
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1208
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1209
|
+
Redirected to http://test.host/resque/schedule
|
1210
|
+
Completed 302 Found in 1ms
|
1211
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1212
|
+
Redirected to http://test.host/resque/cleaner
|
1213
|
+
Completed 302 Found in 1ms
|
1214
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1215
|
+
Redirected to http://test.host/resque/statuses
|
1216
|
+
Completed 302 Found in 1ms
|
1217
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1218
|
+
Redirected to http://test.host/resque/workers
|
1219
|
+
Completed 302 Found in 1ms
|
1220
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1221
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22132:70134287173340::"}
|
1222
|
+
Redirected to http://test.host/resque/workers
|
1223
|
+
Completed 302 Found in 1ms
|
1224
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1225
|
+
Parameters: {"id"=>"UUID"}
|
1226
|
+
Redirected to http://test.host/resque/statuses
|
1227
|
+
Completed 302 Found in 3ms
|
1228
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1229
|
+
Redirected to http://test.host/resque/workers
|
1230
|
+
Completed 302 Found in 1ms
|
1231
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1232
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22132:70134287173340::"}
|
1233
|
+
Redirected to http://test.host/resque/workers
|
1234
|
+
Completed 302 Found in 2ms
|
1235
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1236
|
+
Parameters: {"page"=>"overview"}
|
1237
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (3.0ms)
|
1238
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.3ms)
|
1239
|
+
Completed 200 OK in 31ms (Views: 2.1ms)
|
1240
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1241
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
1242
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1243
|
+
Redirected to http://test.host/resque/schedule
|
1244
|
+
Completed 302 Found in 1ms
|
1245
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1246
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1247
|
+
Redirected to http://test.host/resque/schedule
|
1248
|
+
Completed 302 Found in 1ms
|
1249
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1250
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1251
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1252
|
+
Completed 302 Found in 1ms
|
1253
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1254
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1255
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1256
|
+
Completed 302 Found in 1ms
|
1257
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1258
|
+
Redirected to http://test.host/resque/workers
|
1259
|
+
Completed 302 Found in 1ms
|
1260
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1261
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22132:70134287173340::"}
|
1262
|
+
Redirected to http://test.host/resque/workers
|
1263
|
+
Completed 302 Found in 1ms
|
1264
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1265
|
+
Completed 200 OK in 47ms (Views: 14.3ms)
|
1266
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1267
|
+
Redirected to http://test.host/resque/overview
|
1268
|
+
Completed 302 Found in 2ms
|
1269
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1270
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1271
|
+
Redirected to http://test.host/resque/schedule
|
1272
|
+
Completed 302 Found in 2ms
|
1273
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1274
|
+
Redirected to http://test.host/resque/workers
|
1275
|
+
Completed 302 Found in 1ms
|
1276
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1277
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22132:70134287173340::"}
|
1278
|
+
Redirected to http://test.host/resque/workers
|
1279
|
+
Completed 302 Found in 1ms
|
1280
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1281
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1282
|
+
Completed 302 Found in 2ms
|
1283
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1284
|
+
Parameters: {"id"=>"txt"}
|
1285
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
1286
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1287
|
+
Parameters: {"id"=>"UUID"}
|
1288
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.5ms)
|
1289
|
+
Completed 200 OK in 15ms (Views: 13.8ms)
|
1290
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1291
|
+
Parameters: {"id"=>"UUID"}
|
1292
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1293
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1294
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1295
|
+
Completed 200 OK in 5ms (Views: 0.3ms)
|
1296
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1297
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.0ms)
|
1298
|
+
Completed 500 Internal Server Error in 7ms
|
1299
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1300
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1301
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1302
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1303
|
+
Redirected to http://test.host/resque/schedule
|
1304
|
+
Completed 302 Found in 1ms
|
1305
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1306
|
+
Redirected to http://test.host/resque/workers
|
1307
|
+
Completed 302 Found in 2ms
|
1308
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1309
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22132:70134287173340::"}
|
1310
|
+
Redirected to http://test.host/resque/workers
|
1311
|
+
Completed 302 Found in 2ms
|
1312
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1313
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
1314
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1315
|
+
Filter chain halted as :check_connection rendered or redirected
|
1316
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
1317
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1318
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1319
|
+
Redirected to http://test.host/resque/schedule
|
1320
|
+
Completed 302 Found in 4ms
|
1321
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1322
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1323
|
+
Redirected to http://test.host/resque/schedule
|
1324
|
+
Completed 302 Found in 3ms
|
1325
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1326
|
+
Redirected to http://test.host/resque/cleaner
|
1327
|
+
Completed 302 Found in 2ms
|
1328
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1329
|
+
Redirected to http://test.host/resque/statuses
|
1330
|
+
Completed 302 Found in 2ms
|
1331
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1332
|
+
Redirected to http://test.host/resque/workers
|
1333
|
+
Completed 302 Found in 2ms
|
1334
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1335
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22219:70224758310620::"}
|
1336
|
+
Redirected to http://test.host/resque/workers
|
1337
|
+
Completed 302 Found in 2ms
|
1338
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1339
|
+
Parameters: {"id"=>"UUID"}
|
1340
|
+
Redirected to http://test.host/resque/statuses
|
1341
|
+
Completed 302 Found in 4ms
|
1342
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1343
|
+
Redirected to http://test.host/resque/workers
|
1344
|
+
Completed 302 Found in 2ms
|
1345
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1346
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22219:70224758310620::"}
|
1347
|
+
Redirected to http://test.host/resque/workers
|
1348
|
+
Completed 302 Found in 2ms
|
1349
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1350
|
+
Parameters: {"page"=>"overview"}
|
1351
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (5.3ms)
|
1352
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (4.3ms)
|
1353
|
+
Completed 200 OK in 48ms (Views: 2.9ms)
|
1354
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1355
|
+
Completed 200 OK in 13ms (Views: 12.4ms)
|
1356
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1357
|
+
Redirected to http://test.host/resque/schedule
|
1358
|
+
Completed 302 Found in 2ms
|
1359
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1360
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1361
|
+
Redirected to http://test.host/resque/schedule
|
1362
|
+
Completed 302 Found in 2ms
|
1363
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1364
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1365
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1366
|
+
Completed 302 Found in 1ms
|
1367
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1368
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1369
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1370
|
+
Completed 302 Found in 1ms
|
1371
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1372
|
+
Redirected to http://test.host/resque/workers
|
1373
|
+
Completed 302 Found in 2ms
|
1374
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1375
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22219:70224758310620::"}
|
1376
|
+
Redirected to http://test.host/resque/workers
|
1377
|
+
Completed 302 Found in 2ms
|
1378
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1379
|
+
Completed 200 OK in 62ms (Views: 21.8ms)
|
1380
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1381
|
+
Redirected to http://test.host/resque/overview
|
1382
|
+
Completed 302 Found in 2ms
|
1383
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1384
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1385
|
+
Redirected to http://test.host/resque/schedule
|
1386
|
+
Completed 302 Found in 2ms
|
1387
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1388
|
+
Redirected to http://test.host/resque/workers
|
1389
|
+
Completed 302 Found in 2ms
|
1390
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1391
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22219:70224758310620::"}
|
1392
|
+
Redirected to http://test.host/resque/workers
|
1393
|
+
Completed 302 Found in 2ms
|
1394
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1395
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1396
|
+
Completed 302 Found in 2ms
|
1397
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1398
|
+
Parameters: {"id"=>"txt"}
|
1399
|
+
Completed 200 OK in 3ms (Views: 0.7ms)
|
1400
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1401
|
+
Parameters: {"id"=>"UUID"}
|
1402
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.6ms)
|
1403
|
+
Completed 200 OK in 13ms (Views: 11.4ms)
|
1404
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1405
|
+
Parameters: {"id"=>"UUID"}
|
1406
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1407
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1408
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1409
|
+
Completed 200 OK in 5ms (Views: 0.3ms)
|
1410
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1411
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1412
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_next_more.html.erb (1.0ms)
|
1413
|
+
Completed 200 OK in 25ms (Views: 23.1ms)
|
1414
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1415
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
1416
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1417
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1418
|
+
Redirected to http://test.host/resque/schedule
|
1419
|
+
Completed 302 Found in 3ms
|
1420
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1421
|
+
Redirected to http://test.host/resque/workers
|
1422
|
+
Completed 302 Found in 1ms
|
1423
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1424
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22219:70224758310620::"}
|
1425
|
+
Redirected to http://test.host/resque/workers
|
1426
|
+
Completed 302 Found in 2ms
|
1427
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1428
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
1429
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1430
|
+
Filter chain halted as :check_connection rendered or redirected
|
1431
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
1432
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1433
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1434
|
+
Redirected to http://test.host/resque/schedule
|
1435
|
+
Completed 302 Found in 2ms
|
1436
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1437
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1438
|
+
Redirected to http://test.host/resque/schedule
|
1439
|
+
Completed 302 Found in 1ms
|
1440
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1441
|
+
Redirected to http://test.host/resque/cleaner
|
1442
|
+
Completed 302 Found in 2ms
|
1443
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1444
|
+
Redirected to http://test.host/resque/statuses
|
1445
|
+
Completed 302 Found in 1ms
|
1446
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1447
|
+
Redirected to http://test.host/resque/workers
|
1448
|
+
Completed 302 Found in 1ms
|
1449
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1450
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22305:70100875347660::"}
|
1451
|
+
Redirected to http://test.host/resque/workers
|
1452
|
+
Completed 302 Found in 2ms
|
1453
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1454
|
+
Parameters: {"id"=>"UUID"}
|
1455
|
+
Redirected to http://test.host/resque/statuses
|
1456
|
+
Completed 302 Found in 3ms
|
1457
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1458
|
+
Redirected to http://test.host/resque/workers
|
1459
|
+
Completed 302 Found in 2ms
|
1460
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1461
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22305:70100875347660::"}
|
1462
|
+
Redirected to http://test.host/resque/workers
|
1463
|
+
Completed 302 Found in 1ms
|
1464
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1465
|
+
Parameters: {"page"=>"overview"}
|
1466
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (3.9ms)
|
1467
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (4.1ms)
|
1468
|
+
Completed 200 OK in 34ms (Views: 1.7ms)
|
1469
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1470
|
+
Completed 200 OK in 10ms (Views: 8.9ms)
|
1471
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1472
|
+
Redirected to http://test.host/resque/schedule
|
1473
|
+
Completed 302 Found in 2ms
|
1474
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1475
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1476
|
+
Redirected to http://test.host/resque/schedule
|
1477
|
+
Completed 302 Found in 1ms
|
1478
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1479
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1480
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1481
|
+
Completed 302 Found in 1ms
|
1482
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1483
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1484
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1485
|
+
Completed 302 Found in 1ms
|
1486
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1487
|
+
Redirected to http://test.host/resque/workers
|
1488
|
+
Completed 302 Found in 1ms
|
1489
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1490
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22305:70100875347660::"}
|
1491
|
+
Redirected to http://test.host/resque/workers
|
1492
|
+
Completed 302 Found in 1ms
|
1493
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1494
|
+
Completed 200 OK in 48ms (Views: 14.8ms)
|
1495
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1496
|
+
Redirected to http://test.host/resque/overview
|
1497
|
+
Completed 302 Found in 2ms
|
1498
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1499
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1500
|
+
Redirected to http://test.host/resque/schedule
|
1501
|
+
Completed 302 Found in 1ms
|
1502
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1503
|
+
Redirected to http://test.host/resque/workers
|
1504
|
+
Completed 302 Found in 2ms
|
1505
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1506
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22305:70100875347660::"}
|
1507
|
+
Redirected to http://test.host/resque/workers
|
1508
|
+
Completed 302 Found in 1ms
|
1509
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1510
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1511
|
+
Completed 302 Found in 1ms
|
1512
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1513
|
+
Parameters: {"id"=>"txt"}
|
1514
|
+
Completed 200 OK in 3ms (Views: 0.7ms)
|
1515
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1516
|
+
Parameters: {"id"=>"UUID"}
|
1517
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.7ms)
|
1518
|
+
Completed 200 OK in 13ms (Views: 12.0ms)
|
1519
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1520
|
+
Parameters: {"id"=>"UUID"}
|
1521
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
1522
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1523
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1524
|
+
Completed 200 OK in 7ms (Views: 0.4ms)
|
1525
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1526
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1527
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_next_more.html.erb (1.4ms)
|
1528
|
+
Completed 200 OK in 15ms (Views: 13.0ms)
|
1529
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1530
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
1531
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1532
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1533
|
+
Redirected to http://test.host/resque/schedule
|
1534
|
+
Completed 302 Found in 2ms
|
1535
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1536
|
+
Redirected to http://test.host/resque/workers
|
1537
|
+
Completed 302 Found in 2ms
|
1538
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1539
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22305:70100875347660::"}
|
1540
|
+
Redirected to http://test.host/resque/workers
|
1541
|
+
Completed 302 Found in 2ms
|
1542
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1543
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
1544
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1545
|
+
Filter chain halted as :check_connection rendered or redirected
|
1546
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
1547
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1548
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1549
|
+
Redirected to http://test.host/resque/schedule
|
1550
|
+
Completed 302 Found in 2ms
|
1551
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1552
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1553
|
+
Redirected to http://test.host/resque/schedule
|
1554
|
+
Completed 302 Found in 1ms
|
1555
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1556
|
+
Redirected to http://test.host/resque/cleaner
|
1557
|
+
Completed 302 Found in 1ms
|
1558
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1559
|
+
Redirected to http://test.host/resque/statuses
|
1560
|
+
Completed 302 Found in 1ms
|
1561
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1562
|
+
Redirected to http://test.host/resque/workers
|
1563
|
+
Completed 302 Found in 1ms
|
1564
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1565
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22375:70147977381580::"}
|
1566
|
+
Redirected to http://test.host/resque/workers
|
1567
|
+
Completed 302 Found in 1ms
|
1568
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1569
|
+
Parameters: {"id"=>"UUID"}
|
1570
|
+
Redirected to http://test.host/resque/statuses
|
1571
|
+
Completed 302 Found in 4ms
|
1572
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1573
|
+
Redirected to http://test.host/resque/workers
|
1574
|
+
Completed 302 Found in 1ms
|
1575
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1576
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22375:70147977381580::"}
|
1577
|
+
Redirected to http://test.host/resque/workers
|
1578
|
+
Completed 302 Found in 2ms
|
1579
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1580
|
+
Parameters: {"page"=>"overview"}
|
1581
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (2.8ms)
|
1582
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.0ms)
|
1583
|
+
Completed 200 OK in 22ms (Views: 1.5ms)
|
1584
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1585
|
+
Completed 200 OK in 12ms (Views: 11.0ms)
|
1586
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1587
|
+
Redirected to http://test.host/resque/schedule
|
1588
|
+
Completed 302 Found in 1ms
|
1589
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1590
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1591
|
+
Redirected to http://test.host/resque/schedule
|
1592
|
+
Completed 302 Found in 1ms
|
1593
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1594
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1595
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1596
|
+
Completed 302 Found in 1ms
|
1597
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1598
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1599
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1600
|
+
Completed 302 Found in 1ms
|
1601
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1602
|
+
Redirected to http://test.host/resque/workers
|
1603
|
+
Completed 302 Found in 1ms
|
1604
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1605
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22375:70147977381580::"}
|
1606
|
+
Redirected to http://test.host/resque/workers
|
1607
|
+
Completed 302 Found in 1ms
|
1608
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1609
|
+
Completed 200 OK in 36ms (Views: 10.1ms)
|
1610
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1611
|
+
Redirected to http://test.host/resque/overview
|
1612
|
+
Completed 302 Found in 2ms
|
1613
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1614
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1615
|
+
Redirected to http://test.host/resque/schedule
|
1616
|
+
Completed 302 Found in 1ms
|
1617
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1618
|
+
Redirected to http://test.host/resque/workers
|
1619
|
+
Completed 302 Found in 2ms
|
1620
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1621
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22375:70147977381580::"}
|
1622
|
+
Redirected to http://test.host/resque/workers
|
1623
|
+
Completed 302 Found in 2ms
|
1624
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1625
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1626
|
+
Completed 302 Found in 2ms
|
1627
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1628
|
+
Parameters: {"id"=>"txt"}
|
1629
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
1630
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1631
|
+
Parameters: {"id"=>"UUID"}
|
1632
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.5ms)
|
1633
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
1634
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1635
|
+
Parameters: {"id"=>"UUID"}
|
1636
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
1637
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1638
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1639
|
+
Completed 200 OK in 5ms (Views: 0.3ms)
|
1640
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1641
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1642
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_next_more.html.erb (0.9ms)
|
1643
|
+
Completed 200 OK in 9ms (Views: 7.9ms)
|
1644
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1645
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
1646
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1647
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1648
|
+
Redirected to http://test.host/resque/schedule
|
1649
|
+
Completed 302 Found in 2ms
|
1650
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1651
|
+
Redirected to http://test.host/resque/workers
|
1652
|
+
Completed 302 Found in 1ms
|
1653
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1654
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22375:70147977381580::"}
|
1655
|
+
Redirected to http://test.host/resque/workers
|
1656
|
+
Completed 302 Found in 2ms
|
1657
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1658
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
1659
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1660
|
+
Filter chain halted as :check_connection rendered or redirected
|
1661
|
+
Completed 200 OK in 5ms (Views: 4.2ms)
|
1662
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1663
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1664
|
+
Redirected to http://test.host/resque/schedule
|
1665
|
+
Completed 302 Found in 2ms
|
1666
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1667
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1668
|
+
Redirected to http://test.host/resque/schedule
|
1669
|
+
Completed 302 Found in 1ms
|
1670
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1671
|
+
Redirected to http://test.host/resque/cleaner
|
1672
|
+
Completed 302 Found in 1ms
|
1673
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1674
|
+
Redirected to http://test.host/resque/statuses
|
1675
|
+
Completed 302 Found in 1ms
|
1676
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1677
|
+
Redirected to http://test.host/resque/workers
|
1678
|
+
Completed 302 Found in 1ms
|
1679
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1680
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22411:70200783668940::"}
|
1681
|
+
Redirected to http://test.host/resque/workers
|
1682
|
+
Completed 302 Found in 1ms
|
1683
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1684
|
+
Parameters: {"id"=>"UUID"}
|
1685
|
+
Redirected to http://test.host/resque/statuses
|
1686
|
+
Completed 302 Found in 3ms
|
1687
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1688
|
+
Redirected to http://test.host/resque/workers
|
1689
|
+
Completed 302 Found in 1ms
|
1690
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1691
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22411:70200783668940::"}
|
1692
|
+
Redirected to http://test.host/resque/workers
|
1693
|
+
Completed 302 Found in 1ms
|
1694
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1695
|
+
Parameters: {"page"=>"overview"}
|
1696
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (2.7ms)
|
1697
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.2ms)
|
1698
|
+
Completed 200 OK in 20ms (Views: 1.3ms)
|
1699
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1700
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
1701
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1702
|
+
Redirected to http://test.host/resque/schedule
|
1703
|
+
Completed 302 Found in 1ms
|
1704
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1705
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1706
|
+
Redirected to http://test.host/resque/schedule
|
1707
|
+
Completed 302 Found in 1ms
|
1708
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1709
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1710
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1711
|
+
Completed 302 Found in 1ms
|
1712
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1713
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1714
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1715
|
+
Completed 302 Found in 1ms
|
1716
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1717
|
+
Redirected to http://test.host/resque/workers
|
1718
|
+
Completed 302 Found in 1ms
|
1719
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1720
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22411:70200783668940::"}
|
1721
|
+
Redirected to http://test.host/resque/workers
|
1722
|
+
Completed 302 Found in 1ms
|
1723
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1724
|
+
Completed 200 OK in 38ms (Views: 10.6ms)
|
1725
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1726
|
+
Redirected to http://test.host/resque/overview
|
1727
|
+
Completed 302 Found in 2ms
|
1728
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1729
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1730
|
+
Redirected to http://test.host/resque/schedule
|
1731
|
+
Completed 302 Found in 2ms
|
1732
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1733
|
+
Redirected to http://test.host/resque/workers
|
1734
|
+
Completed 302 Found in 2ms
|
1735
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1736
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22411:70200783668940::"}
|
1737
|
+
Redirected to http://test.host/resque/workers
|
1738
|
+
Completed 302 Found in 2ms
|
1739
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1740
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1741
|
+
Completed 302 Found in 2ms
|
1742
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1743
|
+
Parameters: {"id"=>"txt"}
|
1744
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
1745
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1746
|
+
Parameters: {"id"=>"UUID"}
|
1747
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.6ms)
|
1748
|
+
Completed 200 OK in 12ms (Views: 10.0ms)
|
1749
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1750
|
+
Parameters: {"id"=>"UUID"}
|
1751
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
1752
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1753
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1754
|
+
Completed 200 OK in 4ms (Views: 0.3ms)
|
1755
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1756
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1757
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_next_more.html.erb (0.7ms)
|
1758
|
+
Completed 200 OK in 7ms (Views: 5.6ms)
|
1759
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1760
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
1761
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1762
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1763
|
+
Redirected to http://test.host/resque/schedule
|
1764
|
+
Completed 302 Found in 1ms
|
1765
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1766
|
+
Redirected to http://test.host/resque/workers
|
1767
|
+
Completed 302 Found in 1ms
|
1768
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1769
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):22411:70200783668940::"}
|
1770
|
+
Redirected to http://test.host/resque/workers
|
1771
|
+
Completed 302 Found in 1ms
|
1772
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1773
|
+
Completed 200 OK in 7ms (Views: 6.0ms)
|
1774
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1775
|
+
Filter chain halted as :check_connection rendered or redirected
|
1776
|
+
Completed 200 OK in 4ms (Views: 4.0ms)
|
1777
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1778
|
+
Parameters: {"name"=>"TestName", "class"=>"SingleRecordLoader", "ip"=>"0.0.0.0", "args"=>nil, "description"=>"Test job", "cron"=>"TestCron"}
|
1779
|
+
Redirected to http://test.host/resque/schedule
|
1780
|
+
Completed 302 Found in 3ms
|
1781
|
+
Processing by ResqueManager::ResqueController#add_scheduled_job as HTML
|
1782
|
+
Parameters: {"name"=>"key", "resque client connected to redis://127.0.0.1:6379/0"=>{"name"=>"key", "controller"=>"resque_manager/resque", "action"=>"add_scheduled_job"}}
|
1783
|
+
Redirected to http://test.host/resque/schedule
|
1784
|
+
Completed 302 Found in 2ms
|
1785
|
+
Processing by ResqueManager::ResqueController#cleaner_stale as HTML
|
1786
|
+
Redirected to http://test.host/resque/cleaner
|
1787
|
+
Completed 302 Found in 1ms
|
1788
|
+
Processing by ResqueManager::ResqueController#clear_statuses as HTML
|
1789
|
+
Redirected to http://test.host/resque/statuses
|
1790
|
+
Completed 302 Found in 2ms
|
1791
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1792
|
+
Redirected to http://test.host/resque/workers
|
1793
|
+
Completed 302 Found in 2ms
|
1794
|
+
Processing by ResqueManager::ResqueController#continue_worker as HTML
|
1795
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):46717:70180307076820::"}
|
1796
|
+
Redirected to http://test.host/resque/workers
|
1797
|
+
Completed 302 Found in 3ms
|
1798
|
+
Processing by ResqueManager::ResqueController#kill as HTML
|
1799
|
+
Parameters: {"id"=>"UUID"}
|
1800
|
+
Redirected to http://test.host/resque/statuses
|
1801
|
+
Completed 302 Found in 6ms
|
1802
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1803
|
+
Redirected to http://test.host/resque/workers
|
1804
|
+
Completed 302 Found in 2ms
|
1805
|
+
Processing by ResqueManager::ResqueController#pause_worker as HTML
|
1806
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):46717:70180307076820::"}
|
1807
|
+
Redirected to http://test.host/resque/workers
|
1808
|
+
Completed 302 Found in 3ms
|
1809
|
+
Processing by ResqueManager::ResqueController#poll as HTML
|
1810
|
+
Parameters: {"page"=>"overview"}
|
1811
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_queues.html.erb (5.1ms)
|
1812
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_working.html.erb (2.9ms)
|
1813
|
+
Completed 200 OK in 61ms (Views: 5.2ms)
|
1814
|
+
Processing by ResqueManager::ResqueController#queues as HTML
|
1815
|
+
Completed 200 OK in 15ms (Views: 13.6ms)
|
1816
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1817
|
+
Redirected to http://test.host/resque/schedule
|
1818
|
+
Completed 302 Found in 3ms
|
1819
|
+
Processing by ResqueManager::ResqueController#remove_from_schedule as HTML
|
1820
|
+
Parameters: {"ip"=>"0.0.0.0", "job_name"=>"SingleRecordLoader"}
|
1821
|
+
Redirected to http://test.host/resque/schedule
|
1822
|
+
Completed 302 Found in 1ms
|
1823
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1824
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1825
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1826
|
+
Completed 302 Found in 1ms
|
1827
|
+
Processing by ResqueManager::ResqueController#remove_job as HTML
|
1828
|
+
Parameters: {"class"=>"SingleRecordLoader"}
|
1829
|
+
Redirected to http://test.host/resque/queues/single_record_loader
|
1830
|
+
Completed 302 Found in 1ms
|
1831
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1832
|
+
Redirected to http://test.host/resque/workers
|
1833
|
+
Completed 302 Found in 2ms
|
1834
|
+
Processing by ResqueManager::ResqueController#restart_worker as HTML
|
1835
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):46717:70180307076820::"}
|
1836
|
+
Redirected to http://test.host/resque/workers
|
1837
|
+
Completed 302 Found in 2ms
|
1838
|
+
Processing by ResqueManager::ResqueController#schedule as HTML
|
1839
|
+
Completed 200 OK in 87ms (Views: 21.5ms)
|
1840
|
+
Processing by ResqueManager::ResqueController#schedule_requeue as HTML
|
1841
|
+
Redirected to http://test.host/resque/overview
|
1842
|
+
Completed 302 Found in 2ms
|
1843
|
+
Processing by ResqueManager::ResqueController#start_scheduler as HTML
|
1844
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1845
|
+
Redirected to http://test.host/resque/schedule
|
1846
|
+
Completed 302 Found in 2ms
|
1847
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1848
|
+
Redirected to http://test.host/resque/workers
|
1849
|
+
Completed 302 Found in 3ms
|
1850
|
+
Processing by ResqueManager::ResqueController#start_worker as HTML
|
1851
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):46717:70180307076820::"}
|
1852
|
+
Redirected to http://test.host/resque/workers
|
1853
|
+
Completed 302 Found in 2ms
|
1854
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1855
|
+
Redirected to http://test.host/resque/stats?id=resque
|
1856
|
+
Completed 302 Found in 3ms
|
1857
|
+
Processing by ResqueManager::ResqueController#stats as HTML
|
1858
|
+
Parameters: {"id"=>"txt"}
|
1859
|
+
Completed 200 OK in 3ms (Views: 0.8ms)
|
1860
|
+
Processing by ResqueManager::ResqueController#status as HTML
|
1861
|
+
Parameters: {"id"=>"UUID"}
|
1862
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (1.0ms)
|
1863
|
+
Completed 200 OK in 30ms (Views: 26.8ms)
|
1864
|
+
Processing by ResqueManager::ResqueController#status as JS
|
1865
|
+
Parameters: {"id"=>"UUID"}
|
1866
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
1867
|
+
Processing by ResqueManager::ResqueController#status_poll as HTML
|
1868
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1869
|
+
Completed 200 OK in 8ms (Views: 0.6ms)
|
1870
|
+
Processing by ResqueManager::ResqueController#statuses as HTML
|
1871
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_status_styles.erb (0.1ms)
|
1872
|
+
Rendered /Users/ktyll/rails_sites/git/resque_manager/app/views/resque_manager/resque/_next_more.html.erb (1.6ms)
|
1873
|
+
Completed 200 OK in 15ms (Views: 12.8ms)
|
1874
|
+
Processing by ResqueManager::ResqueController#statuses as JS
|
1875
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
1876
|
+
Processing by ResqueManager::ResqueController#stop_scheduler as HTML
|
1877
|
+
Parameters: {"ip"=>"0.0.0.0"}
|
1878
|
+
Redirected to http://test.host/resque/schedule
|
1879
|
+
Completed 302 Found in 3ms
|
1880
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1881
|
+
Redirected to http://test.host/resque/workers
|
1882
|
+
Completed 302 Found in 2ms
|
1883
|
+
Processing by ResqueManager::ResqueController#stop_worker as HTML
|
1884
|
+
Parameters: {"worker"=>"714s4r1.clarity.net(10.10.1.68):46717:70180307076820::"}
|
1885
|
+
Redirected to http://test.host/resque/workers
|
1886
|
+
Completed 302 Found in 2ms
|
1887
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1888
|
+
Completed 200 OK in 13ms (Views: 11.9ms)
|
1889
|
+
Processing by ResqueManager::ResqueController#working as HTML
|
1890
|
+
Filter chain halted as :check_connection rendered or redirected
|
1891
|
+
Completed 200 OK in 10ms (Views: 9.6ms)
|