uncharted-scheduler 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 13ba89193b2308a7f209d7a244f546e441195900
4
- data.tar.gz: 6d1e9b925ebe75fa018a51e5b2df99c14df4ec06
3
+ metadata.gz: 22af2912d477aba70cd7b7dd1a8e1990aeb970ea
4
+ data.tar.gz: ddefcdf0e45a4c188e79190866f53410d4d8bf7e
5
5
  SHA512:
6
- metadata.gz: ca2c328ede4a51b0e0a9fe4ed2beb56bbc6bf4ac55345015dc0296d7a4428586c1ce2ca843edbfa92f4bc69e54b29d1dceaa513bcd6efafddfcfd7008a122b8c
7
- data.tar.gz: ea426629326cf6389cfb16ee78b62d752d49e086479066aaf3853693d717b885f7eb7f899864737d0b7c0295fc08faf23c0fcece55d24bd2a8d3c76381be0307
6
+ metadata.gz: be6249a8da2ed34ab24191e7c7a944d98ae3a8d48062b5bd9f80b7d7f9673ba374f7349f4f8fcf7f91b85c760f3dffb9b1bebe49a412e32937441baa0160996a
7
+ data.tar.gz: 83f00303e70044a5aaa4cb2cbff765df54ca362888115731492c84f0f582aa868de2f30539047c0716df48b8d531ce637ce560265a5fbbcfeb199dff43cc078f
@@ -61,9 +61,6 @@ module Scheduler
61
61
  info.prev_result = "RUNNING"
62
62
  @mutex.synchronize { info.write! }
63
63
  klass.new.perform
64
- rescue Jobs::HandledExceptionWrapper
65
- # Discourse.handle_exception was already called, and we don't have any extra info to give
66
- failed = true
67
64
  rescue => e
68
65
  Scheduler.handle_job_exception(e, {message: "Running a scheduled job", job: klass})
69
66
  failed = true
@@ -1,3 +1,3 @@
1
1
  module Scheduler
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -1,72 +1,60 @@
1
- <header class="row">
2
- <% if Sidekiq.respond_to?(:paused?) && Sidekiq.paused? %>
3
- <div class="col-sm-12">
4
- <div class="alert alert-danger text-center">
5
- <h2>SIDEKIQ IS PAUSED!</h2>
6
- </div>
7
- </div>
8
- <% end %>
9
- <div class="col-sm-12">
10
- <h3>Recurring Jobs</h3>
1
+ <% if Sidekiq.respond_to?(:paused?) && Sidekiq.paused? %>
2
+ <div class="alert alert-danger text-center">
3
+ <h2>SIDEKIQ IS PAUSED!</h2>
11
4
  </div>
12
- </header>
13
-
14
- <div class="container">
15
- <div class="row">
5
+ <% end %>
6
+ <h3>Recurring Jobs</h3>
16
7
 
17
- <div class="col-md-9">
18
- <% if @schedules.length > 0 %>
19
- <table class="table table-striped table-bordered table-white" style="width: 100%; margin: 0; table-layout:fixed;">
20
- <thead>
21
- <th style="width: 30%">Worker</th>
22
- <th style="width: 15%">Last Run</th>
23
- <th style="width: 15%">Last Result</th>
24
- <th style="width: 15%">Last Duration</th>
25
- <th style="width: 15%">Last Owner</th>
26
- <th style="width: 15%">Next Run Due</th>
27
- <th style="width: 10%">Actions</th>
28
- </thead>
29
- <% @schedules.each do |schedule| %>
30
- <% @info = schedule.schedule_info %>
31
- <tr>
32
- <td>
33
- <%= schedule %>
34
- <td>
35
- <% prev = @info.prev_run %>
36
- <% if prev.nil? %>
37
- Never
38
- <% else %>
39
- <%= relative_time(Time.at(prev)) %>
40
- <% end %>
41
- </td>
42
- <td>
43
- <%= @info.prev_result %>
44
- </td>
45
- <td>
46
- <%= @info.prev_duration %>
47
- </td>
48
- <td>
49
- <%= @info.current_owner %>
50
- </td>
51
- <td>
52
- <% next_run = @info.next_run %>
53
- <% if next_run.nil? %>
54
- Not Scheduled Yet
55
- <% else %>
56
- <%= relative_time(Time.at(next_run)) %>
57
- <% end %>
58
- </td>
59
- <td>
60
- <form action="<%= "#{root_path}scheduler/#{schedule}/trigger" %>" method="post">
61
- <input class="btn btn-danger btn-small" type="submit" name="trigger" value="Trigger" data-confirm="Are you sure you want to trigger this job?" />
62
- </form>
63
- </td>
64
- </tr>
8
+ <% if @schedules.length > 0 %>
9
+ <table class="table table-striped table-bordered table-white" style="width: 100%; margin: 0; table-layout:fixed;">
10
+ <thead>
11
+ <th style="width: 30%">Worker</th>
12
+ <th style="width: 15%">Last Run</th>
13
+ <th style="width: 15%">Last Result</th>
14
+ <th style="width: 15%">Last Duration</th>
15
+ <th style="width: 15%">Last Owner</th>
16
+ <th style="width: 15%">Next Run Due</th>
17
+ <th style="width: 10%">Actions</th>
18
+ </thead>
19
+ <% @schedules.each do |schedule| %>
20
+ <% @info = schedule.schedule_info %>
21
+ <tr>
22
+ <td>
23
+ <%= schedule %>
24
+ <td>
25
+ <% prev = @info.prev_run %>
26
+ <% if prev.nil? %>
27
+ Never
28
+ <% else %>
29
+ <%= relative_time(Time.at(prev)) %>
65
30
  <% end %>
66
- </table>
67
- <% else %>
68
- <div class="alert alert-success">No recurring jobs found.</div>
69
- <% end %>
70
- </div>
71
- </div>
72
- </div>
31
+ </td>
32
+ <td>
33
+ <%= @info.prev_result %>
34
+ </td>
35
+ <td>
36
+ <%= @info.prev_duration %>
37
+ </td>
38
+ <td>
39
+ <%= @info.current_owner %>
40
+ </td>
41
+ <td>
42
+ <% next_run = @info.next_run %>
43
+ <% if next_run.nil? %>
44
+ Not Scheduled Yet
45
+ <% else %>
46
+ <%= relative_time(Time.at(next_run)) %>
47
+ <% end %>
48
+ </td>
49
+ <td>
50
+ <form action="<%= "#{root_path}scheduler/#{schedule}/trigger" %>" method="post">
51
+ <%= csrf_tag %>
52
+ <input class="btn btn-danger btn-small" type="submit" name="trigger" value="Trigger" data-confirm="Are you sure you want to trigger this job?" />
53
+ </form>
54
+ </td>
55
+ </tr>
56
+ <% end %>
57
+ </table>
58
+ <% else %>
59
+ <div class="alert alert-success">No recurring jobs found.</div>
60
+ <% end %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uncharted-scheduler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2015-11-23 00:00:00.000000000 Z
12
+ date: 2016-05-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler