sidekiq 5.2.8 → 6.1.3
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.
Potentially problematic release.
This version of sidekiq might be problematic. Click here for more details.
- checksums.yaml +4 -4
 - data/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
 - data/.github/workflows/ci.yml +41 -0
 - data/.gitignore +0 -2
 - data/.standard.yml +20 -0
 - data/5.0-Upgrade.md +1 -1
 - data/6.0-Upgrade.md +72 -0
 - data/Changes.md +196 -0
 - data/Ent-2.0-Upgrade.md +37 -0
 - data/Ent-Changes.md +72 -1
 - data/Gemfile +12 -11
 - data/Gemfile.lock +193 -0
 - data/Pro-5.0-Upgrade.md +25 -0
 - data/Pro-Changes.md +56 -2
 - data/README.md +18 -34
 - data/Rakefile +5 -4
 - data/bin/sidekiq +26 -2
 - data/bin/sidekiqload +32 -24
 - data/bin/sidekiqmon +8 -0
 - data/lib/generators/sidekiq/templates/worker_test.rb.erb +1 -1
 - data/lib/generators/sidekiq/worker_generator.rb +21 -13
 - data/lib/sidekiq/api.rb +245 -219
 - data/lib/sidekiq/cli.rb +144 -180
 - data/lib/sidekiq/client.rb +68 -48
 - data/lib/sidekiq/delay.rb +5 -6
 - data/lib/sidekiq/exception_handler.rb +10 -12
 - data/lib/sidekiq/extensions/action_mailer.rb +13 -22
 - data/lib/sidekiq/extensions/active_record.rb +13 -10
 - data/lib/sidekiq/extensions/class_methods.rb +14 -11
 - data/lib/sidekiq/extensions/generic_proxy.rb +4 -4
 - data/lib/sidekiq/fetch.rb +29 -30
 - data/lib/sidekiq/job_logger.rb +45 -7
 - data/lib/sidekiq/job_retry.rb +62 -61
 - data/lib/sidekiq/launcher.rb +112 -54
 - data/lib/sidekiq/logger.rb +166 -0
 - data/lib/sidekiq/manager.rb +11 -13
 - data/lib/sidekiq/middleware/chain.rb +15 -5
 - data/lib/sidekiq/middleware/i18n.rb +5 -7
 - data/lib/sidekiq/monitor.rb +133 -0
 - data/lib/sidekiq/paginator.rb +18 -14
 - data/lib/sidekiq/processor.rb +71 -70
 - data/lib/sidekiq/rails.rb +29 -37
 - data/lib/sidekiq/redis_connection.rb +50 -48
 - data/lib/sidekiq/scheduled.rb +28 -29
 - data/lib/sidekiq/sd_notify.rb +149 -0
 - data/lib/sidekiq/systemd.rb +24 -0
 - data/lib/sidekiq/testing/inline.rb +2 -1
 - data/lib/sidekiq/testing.rb +35 -24
 - data/lib/sidekiq/util.rb +17 -16
 - data/lib/sidekiq/version.rb +2 -1
 - data/lib/sidekiq/web/action.rb +14 -10
 - data/lib/sidekiq/web/application.rb +74 -72
 - data/lib/sidekiq/web/csrf_protection.rb +156 -0
 - data/lib/sidekiq/web/helpers.rb +97 -77
 - data/lib/sidekiq/web/router.rb +18 -17
 - data/lib/sidekiq/web.rb +53 -53
 - data/lib/sidekiq/worker.rb +126 -102
 - data/lib/sidekiq.rb +69 -44
 - data/sidekiq.gemspec +15 -16
 - data/web/assets/javascripts/application.js +25 -27
 - data/web/assets/javascripts/dashboard.js +4 -23
 - data/web/assets/stylesheets/application-dark.css +149 -0
 - data/web/assets/stylesheets/application.css +28 -6
 - data/web/locales/de.yml +14 -2
 - data/web/locales/en.yml +2 -0
 - data/web/locales/fr.yml +3 -3
 - data/web/locales/ja.yml +4 -1
 - data/web/locales/lt.yml +83 -0
 - data/web/locales/pl.yml +4 -4
 - data/web/locales/ru.yml +4 -0
 - data/web/locales/vi.yml +83 -0
 - data/web/views/_job_info.erb +2 -1
 - data/web/views/busy.erb +8 -3
 - data/web/views/dead.erb +2 -2
 - data/web/views/layout.erb +1 -0
 - data/web/views/morgue.erb +5 -2
 - data/web/views/queue.erb +10 -1
 - data/web/views/queues.erb +9 -1
 - data/web/views/retries.erb +5 -2
 - data/web/views/retry.erb +2 -2
 - data/web/views/scheduled.erb +5 -2
 - metadata +31 -49
 - data/.circleci/config.yml +0 -61
 - data/.github/issue_template.md +0 -11
 - data/.travis.yml +0 -11
 - data/bin/sidekiqctl +0 -20
 - data/lib/sidekiq/core_ext.rb +0 -1
 - data/lib/sidekiq/ctl.rb +0 -221
 - data/lib/sidekiq/logging.rb +0 -122
 - data/lib/sidekiq/middleware/server/active_record.rb +0 -23
 
    
        data/web/views/busy.erb
    CHANGED
    
    | 
         @@ -14,10 +14,11 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
            </div>
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         
             
            <div class="table_container">
         
     | 
| 
       17 
     | 
    
         
            -
              <table class="processes table table-hover table-bordered table-striped 
     | 
| 
      
 17 
     | 
    
         
            +
              <table class="processes table table-hover table-bordered table-striped">
         
     | 
| 
       18 
18 
     | 
    
         
             
                <thead>
         
     | 
| 
       19 
19 
     | 
    
         
             
                  <th><%= t('Name') %></th>
         
     | 
| 
       20 
20 
     | 
    
         
             
                  <th><%= t('Started') %></th>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <th><%= t('RSS') %><a href="https://github.com/mperham/sidekiq/wiki/Memory#rss"><span class="circled" title="Click to learn more about RSS">?</span></a></th>
         
     | 
| 
       21 
22 
     | 
    
         
             
                  <th><%= t('Threads') %></th>
         
     | 
| 
       22 
23 
     | 
    
         
             
                  <th><%= t('Busy') %></th>
         
     | 
| 
       23 
24 
     | 
    
         
             
                  <th> </th>
         
     | 
| 
         @@ -42,6 +43,7 @@ 
     | 
|
| 
       42 
43 
     | 
    
         
             
                      <%= process['queues'] * ", " %>
         
     | 
| 
       43 
44 
     | 
    
         
             
                    </td>
         
     | 
| 
       44 
45 
     | 
    
         
             
                    <td><%= relative_time(Time.at(process['started_at'])) %></td>
         
     | 
| 
      
 46 
     | 
    
         
            +
                    <td><%= format_memory(process['rss'].to_i) %></td>
         
     | 
| 
       45 
47 
     | 
    
         
             
                    <td><%= process['concurrency'] %></td>
         
     | 
| 
       46 
48 
     | 
    
         
             
                    <td><%= process['busy'] %></td>
         
     | 
| 
       47 
49 
     | 
    
         
             
                    <td>
         
     | 
| 
         @@ -68,7 +70,7 @@ 
     | 
|
| 
       68 
70 
     | 
    
         
             
            </div>
         
     | 
| 
       69 
71 
     | 
    
         | 
| 
       70 
72 
     | 
    
         
             
            <div class="table_container">
         
     | 
| 
       71 
     | 
    
         
            -
              <table class="workers table table-hover table-bordered table-striped 
     | 
| 
      
 73 
     | 
    
         
            +
              <table class="workers table table-hover table-bordered table-striped">
         
     | 
| 
       72 
74 
     | 
    
         
             
                <thead>
         
     | 
| 
       73 
75 
     | 
    
         
             
                  <th><%= t('Process') %></th>
         
     | 
| 
       74 
76 
     | 
    
         
             
                  <th><%= t('TID') %></th>
         
     | 
| 
         @@ -87,7 +89,10 @@ 
     | 
|
| 
       87 
89 
     | 
    
         
             
                    <td>
         
     | 
| 
       88 
90 
     | 
    
         
             
                      <a href="<%= root_path %>queues/<%= msg['queue'] %>"><%= msg['queue'] %></a>
         
     | 
| 
       89 
91 
     | 
    
         
             
                    </td>
         
     | 
| 
       90 
     | 
    
         
            -
                    <td 
     | 
| 
      
 92 
     | 
    
         
            +
                    <td>
         
     | 
| 
      
 93 
     | 
    
         
            +
                      <%= job.display_class %>
         
     | 
| 
      
 94 
     | 
    
         
            +
                      <%= display_tags(job, nil) %>
         
     | 
| 
      
 95 
     | 
    
         
            +
                    </td>
         
     | 
| 
       91 
96 
     | 
    
         
             
                    <td>
         
     | 
| 
       92 
97 
     | 
    
         
             
                      <div class="args"><%= display_args(job.display_args) %></div>
         
     | 
| 
       93 
98 
     | 
    
         
             
                    </td>
         
     | 
    
        data/web/views/dead.erb
    CHANGED
    
    | 
         @@ -14,11 +14,11 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
                    <th><%= t('ErrorMessage') %></th>
         
     | 
| 
       15 
15 
     | 
    
         
             
                    <td><%= h(@dead['error_message']) %></td>
         
     | 
| 
       16 
16 
     | 
    
         
             
                  </tr>
         
     | 
| 
       17 
     | 
    
         
            -
                  <% if  
     | 
| 
      
 17 
     | 
    
         
            +
                  <% if @dead.error_backtrace %>
         
     | 
| 
       18 
18 
     | 
    
         
             
                    <tr>
         
     | 
| 
       19 
19 
     | 
    
         
             
                      <th><%= t('ErrorBacktrace') %></th>
         
     | 
| 
       20 
20 
     | 
    
         
             
                      <td>
         
     | 
| 
       21 
     | 
    
         
            -
                        <code><%= @dead 
     | 
| 
      
 21 
     | 
    
         
            +
                        <code><%= @dead.error_backtrace.join("<br/>") %></code>
         
     | 
| 
       22 
22 
     | 
    
         
             
                      </td>
         
     | 
| 
       23 
23 
     | 
    
         
             
                    </tr>
         
     | 
| 
       24 
24 
     | 
    
         
             
                  <% end %>
         
     | 
    
        data/web/views/layout.erb
    CHANGED
    
    | 
         @@ -11,6 +11,7 @@ 
     | 
|
| 
       11 
11 
     | 
    
         
             
                <% end %>
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
13 
     | 
    
         
             
                <link href="<%= root_path %>stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" />
         
     | 
| 
      
 14 
     | 
    
         
            +
                <link href="<%= root_path %>stylesheets/application-dark.css" media="screen and (prefers-color-scheme: dark)" rel="stylesheet" type="text/css" />
         
     | 
| 
       14 
15 
     | 
    
         
             
                <% if rtl? %>
         
     | 
| 
       15 
16 
     | 
    
         
             
                <link href="<%= root_path %>stylesheets/application-rtl.css" media="screen" rel="stylesheet" type="text/css" />
         
     | 
| 
       16 
17 
     | 
    
         
             
                <% end %>
         
     | 
    
        data/web/views/morgue.erb
    CHANGED
    
    | 
         @@ -14,7 +14,7 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
              <form action="<%= root_path %>morgue" method="post">
         
     | 
| 
       15 
15 
     | 
    
         
             
                <%= csrf_tag %>
         
     | 
| 
       16 
16 
     | 
    
         
             
                <div class="table_container">
         
     | 
| 
       17 
     | 
    
         
            -
                  <table class="table table-striped table-bordered 
     | 
| 
      
 17 
     | 
    
         
            +
                  <table class="table table-striped table-bordered">
         
     | 
| 
       18 
18 
     | 
    
         
             
                    <thead>
         
     | 
| 
       19 
19 
     | 
    
         
             
                      <tr>
         
     | 
| 
       20 
20 
     | 
    
         
             
                        <th class="table-checkbox checkbox-column">
         
     | 
| 
         @@ -42,7 +42,10 @@ 
     | 
|
| 
       42 
42 
     | 
    
         
             
                        <td>
         
     | 
| 
       43 
43 
     | 
    
         
             
                          <a href="<%= root_path %>queues/<%= entry.queue %>"><%= entry.queue %></a>
         
     | 
| 
       44 
44 
     | 
    
         
             
                        </td>
         
     | 
| 
       45 
     | 
    
         
            -
                        <td 
     | 
| 
      
 45 
     | 
    
         
            +
                        <td>
         
     | 
| 
      
 46 
     | 
    
         
            +
                          <%= entry.display_class %>
         
     | 
| 
      
 47 
     | 
    
         
            +
                          <%= display_tags(entry, "morgue") %>
         
     | 
| 
      
 48 
     | 
    
         
            +
                        </td>
         
     | 
| 
       46 
49 
     | 
    
         
             
                        <td>
         
     | 
| 
       47 
50 
     | 
    
         
             
                          <div class="args"><%= display_args(entry.display_args) %></div>
         
     | 
| 
       48 
51 
     | 
    
         
             
                        </td>
         
     | 
    
        data/web/views/queue.erb
    CHANGED
    
    | 
         @@ -15,13 +15,22 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
            <div class="table_container">
         
     | 
| 
       16 
16 
     | 
    
         
             
              <table class="queue table table-hover table-bordered table-striped">
         
     | 
| 
       17 
17 
     | 
    
         
             
                <thead>
         
     | 
| 
      
 18 
     | 
    
         
            +
                  <th><a href="<%= url %>?direction=<%= params[:direction] == 'asc' ? 'desc' : 'asc' %>"># <%= sort_direction_label %></a></th>
         
     | 
| 
       18 
19 
     | 
    
         
             
                  <th><%= t('Job') %></th>
         
     | 
| 
       19 
20 
     | 
    
         
             
                  <th><%= t('Arguments') %></th>
         
     | 
| 
       20 
21 
     | 
    
         
             
                  <th></th>
         
     | 
| 
       21 
22 
     | 
    
         
             
                </thead>
         
     | 
| 
       22 
23 
     | 
    
         
             
                <% @messages.each_with_index do |msg, index| %>
         
     | 
| 
       23 
24 
     | 
    
         
             
                  <tr>
         
     | 
| 
       24 
     | 
    
         
            -
                     
     | 
| 
      
 25 
     | 
    
         
            +
                    <% if params[:direction] == 'asc' %>
         
     | 
| 
      
 26 
     | 
    
         
            +
                      <td><%= @count * (@current_page - 1) + index + 1 %></td>
         
     | 
| 
      
 27 
     | 
    
         
            +
                    <% else %>
         
     | 
| 
      
 28 
     | 
    
         
            +
                      <td><%= @total_size - (@count * (@current_page - 1) + index) %></td>
         
     | 
| 
      
 29 
     | 
    
         
            +
                    <% end %>
         
     | 
| 
      
 30 
     | 
    
         
            +
                    <td>
         
     | 
| 
      
 31 
     | 
    
         
            +
                      <%= h(msg.display_class) %>
         
     | 
| 
      
 32 
     | 
    
         
            +
                      <%= display_tags(msg, nil) %>
         
     | 
| 
      
 33 
     | 
    
         
            +
                    </td>
         
     | 
| 
       25 
34 
     | 
    
         
             
                    <td>
         
     | 
| 
       26 
35 
     | 
    
         
             
                      <% a = msg.display_args %>
         
     | 
| 
       27 
36 
     | 
    
         
             
                      <% if a.inspect.size > 100 %>
         
     | 
    
        data/web/views/queues.erb
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            <h3><%= t('Queues') %></h3>
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            <div class="table_container">
         
     | 
| 
       4 
     | 
    
         
            -
              <table class="queues table table-hover table-bordered table-striped 
     | 
| 
      
 4 
     | 
    
         
            +
              <table class="queues table table-hover table-bordered table-striped">
         
     | 
| 
       5 
5 
     | 
    
         
             
                <thead>
         
     | 
| 
       6 
6 
     | 
    
         
             
                  <th><%= t('Queue') %></th>
         
     | 
| 
       7 
7 
     | 
    
         
             
                  <th><%= t('Size') %></th>
         
     | 
| 
         @@ -22,6 +22,14 @@ 
     | 
|
| 
       22 
22 
     | 
    
         
             
                      <form action="<%=root_path %>queues/<%= CGI.escape(queue.name) %>" method="post">
         
     | 
| 
       23 
23 
     | 
    
         
             
                        <%= csrf_tag %>
         
     | 
| 
       24 
24 
     | 
    
         
             
                        <input class="btn btn-danger btn-xs" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSureDeleteQueue', :queue => h(queue.name)) %>" />
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                        <% if Sidekiq.pro? %>
         
     | 
| 
      
 27 
     | 
    
         
            +
                          <% if queue.paused? %>
         
     | 
| 
      
 28 
     | 
    
         
            +
                            <input class="btn btn-danger btn-xs" type="submit" name="unpause" value="<%= t('Unpause') %>" />
         
     | 
| 
      
 29 
     | 
    
         
            +
                          <% else %>
         
     | 
| 
      
 30 
     | 
    
         
            +
                            <input class="btn btn-danger btn-xs" type="submit" name="pause" value="<%= t('Pause') %>" />
         
     | 
| 
      
 31 
     | 
    
         
            +
                          <% end %>
         
     | 
| 
      
 32 
     | 
    
         
            +
                        <% end %>
         
     | 
| 
       25 
33 
     | 
    
         
             
                      </form>
         
     | 
| 
       26 
34 
     | 
    
         
             
                    </td>
         
     | 
| 
       27 
35 
     | 
    
         
             
                  </tr>
         
     | 
    
        data/web/views/retries.erb
    CHANGED
    
    | 
         @@ -14,7 +14,7 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
              <form action="<%= root_path %>retries" method="post">
         
     | 
| 
       15 
15 
     | 
    
         
             
                <%= csrf_tag %>
         
     | 
| 
       16 
16 
     | 
    
         
             
                <div class="table_container">
         
     | 
| 
       17 
     | 
    
         
            -
                  <table class="table table-striped table-bordered 
     | 
| 
      
 17 
     | 
    
         
            +
                  <table class="table table-striped table-bordered">
         
     | 
| 
       18 
18 
     | 
    
         
             
                    <thead>
         
     | 
| 
       19 
19 
     | 
    
         
             
                      <tr>
         
     | 
| 
       20 
20 
     | 
    
         
             
                        <th class="table-checkbox checkbox-column">
         
     | 
| 
         @@ -44,7 +44,10 @@ 
     | 
|
| 
       44 
44 
     | 
    
         
             
                        <td>
         
     | 
| 
       45 
45 
     | 
    
         
             
                          <a href="<%= root_path %>queues/<%= entry.queue %>"><%= entry.queue %></a>
         
     | 
| 
       46 
46 
     | 
    
         
             
                        </td>
         
     | 
| 
       47 
     | 
    
         
            -
                        <td 
     | 
| 
      
 47 
     | 
    
         
            +
                        <td>
         
     | 
| 
      
 48 
     | 
    
         
            +
                          <%= entry.display_class %>
         
     | 
| 
      
 49 
     | 
    
         
            +
                          <%= display_tags(entry, "retries") %>
         
     | 
| 
      
 50 
     | 
    
         
            +
                        </td>
         
     | 
| 
       48 
51 
     | 
    
         
             
                        <td>
         
     | 
| 
       49 
52 
     | 
    
         
             
                          <div class="args"><%= display_args(entry.display_args) %></div>
         
     | 
| 
       50 
53 
     | 
    
         
             
                        </td>
         
     | 
    
        data/web/views/retry.erb
    CHANGED
    
    | 
         @@ -14,11 +14,11 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
                    <th><%= t('ErrorMessage') %></th>
         
     | 
| 
       15 
15 
     | 
    
         
             
                    <td><%= h(@retry['error_message']) %></td>
         
     | 
| 
       16 
16 
     | 
    
         
             
                  </tr>
         
     | 
| 
       17 
     | 
    
         
            -
                  <% if  
     | 
| 
      
 17 
     | 
    
         
            +
                  <% if @retry.error_backtrace %>
         
     | 
| 
       18 
18 
     | 
    
         
             
                    <tr>
         
     | 
| 
       19 
19 
     | 
    
         
             
                      <th><%= t('ErrorBacktrace') %></th>
         
     | 
| 
       20 
20 
     | 
    
         
             
                      <td>
         
     | 
| 
       21 
     | 
    
         
            -
                        <code><%= @retry 
     | 
| 
      
 21 
     | 
    
         
            +
                        <code><%= @retry.error_backtrace.join("<br/>") %></code>
         
     | 
| 
       22 
22 
     | 
    
         
             
                      </td>
         
     | 
| 
       23 
23 
     | 
    
         
             
                    </tr>
         
     | 
| 
       24 
24 
     | 
    
         
             
                  <% end %>
         
     | 
    
        data/web/views/scheduled.erb
    CHANGED
    
    | 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
              <form action="<%= root_path %>scheduled" method="post">
         
     | 
| 
       16 
16 
     | 
    
         
             
                <%= csrf_tag %>
         
     | 
| 
       17 
17 
     | 
    
         
             
                <div class="table_container">
         
     | 
| 
       18 
     | 
    
         
            -
                  <table class="table table-striped table-bordered 
     | 
| 
      
 18 
     | 
    
         
            +
                  <table class="table table-striped table-bordered">
         
     | 
| 
       19 
19 
     | 
    
         
             
                    <thead>
         
     | 
| 
       20 
20 
     | 
    
         
             
                      <tr>
         
     | 
| 
       21 
21 
     | 
    
         
             
                        <th class="checkbox-column">
         
     | 
| 
         @@ -38,7 +38,10 @@ 
     | 
|
| 
       38 
38 
     | 
    
         
             
                        <td>
         
     | 
| 
       39 
39 
     | 
    
         
             
                          <a href="<%= root_path %>queues/<%= entry.queue %>"><%= entry.queue %></a>
         
     | 
| 
       40 
40 
     | 
    
         
             
                        </td>
         
     | 
| 
       41 
     | 
    
         
            -
                        <td 
     | 
| 
      
 41 
     | 
    
         
            +
                        <td>
         
     | 
| 
      
 42 
     | 
    
         
            +
                          <%= entry.display_class %>
         
     | 
| 
      
 43 
     | 
    
         
            +
                          <%= display_tags(entry, "scheduled") %>
         
     | 
| 
      
 44 
     | 
    
         
            +
                        </td>
         
     | 
| 
       42 
45 
     | 
    
         
             
                        <td>
         
     | 
| 
       43 
46 
     | 
    
         
             
                           <div class="args"><%= display_args(entry.display_args) %></div>
         
     | 
| 
       44 
47 
     | 
    
         
             
                        </td>
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: sidekiq
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version:  
     | 
| 
      
 4 
     | 
    
         
            +
              version: 6.1.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Mike Perham
         
     | 
| 
       8 
     | 
    
         
            -
            autorequire: 
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-01-21 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: redis
         
     | 
| 
         @@ -16,27 +16,18 @@ dependencies: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - ">="
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version:  
     | 
| 
       20 
     | 
    
         
            -
                - - "<"
         
     | 
| 
       21 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       22 
     | 
    
         
            -
                    version: '5'
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 4.2.0
         
     | 
| 
       23 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       24 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       25 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       26 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       27 
24 
     | 
    
         
             
                - - ">="
         
     | 
| 
       28 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       29 
     | 
    
         
            -
                    version:  
     | 
| 
       30 
     | 
    
         
            -
                - - "<"
         
     | 
| 
       31 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       32 
     | 
    
         
            -
                    version: '5'
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: 4.2.0
         
     | 
| 
       33 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       34 
28 
     | 
    
         
             
              name: connection_pool
         
     | 
| 
       35 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       36 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       37 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       38 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       39 
     | 
    
         
            -
                    version: '2.2'
         
     | 
| 
       40 
31 
     | 
    
         
             
                - - ">="
         
     | 
| 
       41 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       42 
33 
     | 
    
         
             
                    version: 2.2.2
         
     | 
| 
         @@ -44,9 +35,6 @@ dependencies: 
     | 
|
| 
       44 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       45 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       46 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       47 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       48 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       49 
     | 
    
         
            -
                    version: '2.2'
         
     | 
| 
       50 
38 
     | 
    
         
             
                - - ">="
         
     | 
| 
       51 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       52 
40 
     | 
    
         
             
                    version: 2.2.2
         
     | 
| 
         @@ -54,61 +42,51 @@ dependencies: 
     | 
|
| 
       54 
42 
     | 
    
         
             
              name: rack
         
     | 
| 
       55 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       56 
44 
     | 
    
         
             
                requirements:
         
     | 
| 
       57 
     | 
    
         
            -
                - - " 
     | 
| 
       58 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       59 
     | 
    
         
            -
                    version: 2.1.0
         
     | 
| 
       60 
     | 
    
         
            -
              type: :runtime
         
     | 
| 
       61 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       62 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       63 
     | 
    
         
            -
                requirements:
         
     | 
| 
       64 
     | 
    
         
            -
                - - "<"
         
     | 
| 
       65 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       66 
     | 
    
         
            -
                    version: 2.1.0
         
     | 
| 
       67 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       68 
     | 
    
         
            -
              name: rack-protection
         
     | 
| 
       69 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       70 
     | 
    
         
            -
                requirements:
         
     | 
| 
       71 
     | 
    
         
            -
                - - ">="
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
       72 
46 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       73 
     | 
    
         
            -
                    version:  
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
       74 
48 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       75 
49 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       76 
50 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       77 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       78 
     | 
    
         
            -
                - - " 
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
       79 
53 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       80 
     | 
    
         
            -
                    version:  
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
       81 
55 
     | 
    
         
             
            description: Simple, efficient background processing for Ruby.
         
     | 
| 
       82 
56 
     | 
    
         
             
            email:
         
     | 
| 
       83 
57 
     | 
    
         
             
            - mperham@gmail.com
         
     | 
| 
       84 
58 
     | 
    
         
             
            executables:
         
     | 
| 
       85 
59 
     | 
    
         
             
            - sidekiq
         
     | 
| 
       86 
     | 
    
         
            -
            -  
     | 
| 
      
 60 
     | 
    
         
            +
            - sidekiqmon
         
     | 
| 
       87 
61 
     | 
    
         
             
            extensions: []
         
     | 
| 
       88 
62 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       89 
63 
     | 
    
         
             
            files:
         
     | 
| 
       90 
     | 
    
         
            -
            - ". 
     | 
| 
      
 64 
     | 
    
         
            +
            - ".github/ISSUE_TEMPLATE/bug_report.md"
         
     | 
| 
       91 
65 
     | 
    
         
             
            - ".github/contributing.md"
         
     | 
| 
       92 
     | 
    
         
            -
            - ".github/ 
     | 
| 
      
 66 
     | 
    
         
            +
            - ".github/workflows/ci.yml"
         
     | 
| 
       93 
67 
     | 
    
         
             
            - ".gitignore"
         
     | 
| 
       94 
     | 
    
         
            -
            - ". 
     | 
| 
      
 68 
     | 
    
         
            +
            - ".standard.yml"
         
     | 
| 
       95 
69 
     | 
    
         
             
            - 3.0-Upgrade.md
         
     | 
| 
       96 
70 
     | 
    
         
             
            - 4.0-Upgrade.md
         
     | 
| 
       97 
71 
     | 
    
         
             
            - 5.0-Upgrade.md
         
     | 
| 
      
 72 
     | 
    
         
            +
            - 6.0-Upgrade.md
         
     | 
| 
       98 
73 
     | 
    
         
             
            - COMM-LICENSE
         
     | 
| 
       99 
74 
     | 
    
         
             
            - Changes.md
         
     | 
| 
      
 75 
     | 
    
         
            +
            - Ent-2.0-Upgrade.md
         
     | 
| 
       100 
76 
     | 
    
         
             
            - Ent-Changes.md
         
     | 
| 
       101 
77 
     | 
    
         
             
            - Gemfile
         
     | 
| 
      
 78 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
       102 
79 
     | 
    
         
             
            - LICENSE
         
     | 
| 
       103 
80 
     | 
    
         
             
            - Pro-2.0-Upgrade.md
         
     | 
| 
       104 
81 
     | 
    
         
             
            - Pro-3.0-Upgrade.md
         
     | 
| 
       105 
82 
     | 
    
         
             
            - Pro-4.0-Upgrade.md
         
     | 
| 
      
 83 
     | 
    
         
            +
            - Pro-5.0-Upgrade.md
         
     | 
| 
       106 
84 
     | 
    
         
             
            - Pro-Changes.md
         
     | 
| 
       107 
85 
     | 
    
         
             
            - README.md
         
     | 
| 
       108 
86 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       109 
87 
     | 
    
         
             
            - bin/sidekiq
         
     | 
| 
       110 
     | 
    
         
            -
            - bin/sidekiqctl
         
     | 
| 
       111 
88 
     | 
    
         
             
            - bin/sidekiqload
         
     | 
| 
      
 89 
     | 
    
         
            +
            - bin/sidekiqmon
         
     | 
| 
       112 
90 
     | 
    
         
             
            - code_of_conduct.md
         
     | 
| 
       113 
91 
     | 
    
         
             
            - lib/generators/sidekiq/templates/worker.rb.erb
         
     | 
| 
       114 
92 
     | 
    
         
             
            - lib/generators/sidekiq/templates/worker_spec.rb.erb
         
     | 
| 
         @@ -118,8 +96,6 @@ files: 
     | 
|
| 
       118 
96 
     | 
    
         
             
            - lib/sidekiq/api.rb
         
     | 
| 
       119 
97 
     | 
    
         
             
            - lib/sidekiq/cli.rb
         
     | 
| 
       120 
98 
     | 
    
         
             
            - lib/sidekiq/client.rb
         
     | 
| 
       121 
     | 
    
         
            -
            - lib/sidekiq/core_ext.rb
         
     | 
| 
       122 
     | 
    
         
            -
            - lib/sidekiq/ctl.rb
         
     | 
| 
       123 
99 
     | 
    
         
             
            - lib/sidekiq/delay.rb
         
     | 
| 
       124 
100 
     | 
    
         
             
            - lib/sidekiq/exception_handler.rb
         
     | 
| 
       125 
101 
     | 
    
         
             
            - lib/sidekiq/extensions/action_mailer.rb
         
     | 
| 
         @@ -130,16 +106,18 @@ files: 
     | 
|
| 
       130 
106 
     | 
    
         
             
            - lib/sidekiq/job_logger.rb
         
     | 
| 
       131 
107 
     | 
    
         
             
            - lib/sidekiq/job_retry.rb
         
     | 
| 
       132 
108 
     | 
    
         
             
            - lib/sidekiq/launcher.rb
         
     | 
| 
       133 
     | 
    
         
            -
            - lib/sidekiq/ 
     | 
| 
      
 109 
     | 
    
         
            +
            - lib/sidekiq/logger.rb
         
     | 
| 
       134 
110 
     | 
    
         
             
            - lib/sidekiq/manager.rb
         
     | 
| 
       135 
111 
     | 
    
         
             
            - lib/sidekiq/middleware/chain.rb
         
     | 
| 
       136 
112 
     | 
    
         
             
            - lib/sidekiq/middleware/i18n.rb
         
     | 
| 
       137 
     | 
    
         
            -
            - lib/sidekiq/ 
     | 
| 
      
 113 
     | 
    
         
            +
            - lib/sidekiq/monitor.rb
         
     | 
| 
       138 
114 
     | 
    
         
             
            - lib/sidekiq/paginator.rb
         
     | 
| 
       139 
115 
     | 
    
         
             
            - lib/sidekiq/processor.rb
         
     | 
| 
       140 
116 
     | 
    
         
             
            - lib/sidekiq/rails.rb
         
     | 
| 
       141 
117 
     | 
    
         
             
            - lib/sidekiq/redis_connection.rb
         
     | 
| 
       142 
118 
     | 
    
         
             
            - lib/sidekiq/scheduled.rb
         
     | 
| 
      
 119 
     | 
    
         
            +
            - lib/sidekiq/sd_notify.rb
         
     | 
| 
      
 120 
     | 
    
         
            +
            - lib/sidekiq/systemd.rb
         
     | 
| 
       143 
121 
     | 
    
         
             
            - lib/sidekiq/testing.rb
         
     | 
| 
       144 
122 
     | 
    
         
             
            - lib/sidekiq/testing/inline.rb
         
     | 
| 
       145 
123 
     | 
    
         
             
            - lib/sidekiq/util.rb
         
     | 
| 
         @@ -147,6 +125,7 @@ files: 
     | 
|
| 
       147 
125 
     | 
    
         
             
            - lib/sidekiq/web.rb
         
     | 
| 
       148 
126 
     | 
    
         
             
            - lib/sidekiq/web/action.rb
         
     | 
| 
       149 
127 
     | 
    
         
             
            - lib/sidekiq/web/application.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - lib/sidekiq/web/csrf_protection.rb
         
     | 
| 
       150 
129 
     | 
    
         
             
            - lib/sidekiq/web/helpers.rb
         
     | 
| 
       151 
130 
     | 
    
         
             
            - lib/sidekiq/web/router.rb
         
     | 
| 
       152 
131 
     | 
    
         
             
            - lib/sidekiq/worker.rb
         
     | 
| 
         @@ -156,6 +135,7 @@ files: 
     | 
|
| 
       156 
135 
     | 
    
         
             
            - web/assets/images/status.png
         
     | 
| 
       157 
136 
     | 
    
         
             
            - web/assets/javascripts/application.js
         
     | 
| 
       158 
137 
     | 
    
         
             
            - web/assets/javascripts/dashboard.js
         
     | 
| 
      
 138 
     | 
    
         
            +
            - web/assets/stylesheets/application-dark.css
         
     | 
| 
       159 
139 
     | 
    
         
             
            - web/assets/stylesheets/application-rtl.css
         
     | 
| 
       160 
140 
     | 
    
         
             
            - web/assets/stylesheets/application.css
         
     | 
| 
       161 
141 
     | 
    
         
             
            - web/assets/stylesheets/bootstrap-rtl.min.css
         
     | 
| 
         @@ -174,6 +154,7 @@ files: 
     | 
|
| 
       174 
154 
     | 
    
         
             
            - web/locales/it.yml
         
     | 
| 
       175 
155 
     | 
    
         
             
            - web/locales/ja.yml
         
     | 
| 
       176 
156 
     | 
    
         
             
            - web/locales/ko.yml
         
     | 
| 
      
 157 
     | 
    
         
            +
            - web/locales/lt.yml
         
     | 
| 
       177 
158 
     | 
    
         
             
            - web/locales/nb.yml
         
     | 
| 
       178 
159 
     | 
    
         
             
            - web/locales/nl.yml
         
     | 
| 
       179 
160 
     | 
    
         
             
            - web/locales/pl.yml
         
     | 
| 
         @@ -184,6 +165,7 @@ files: 
     | 
|
| 
       184 
165 
     | 
    
         
             
            - web/locales/ta.yml
         
     | 
| 
       185 
166 
     | 
    
         
             
            - web/locales/uk.yml
         
     | 
| 
       186 
167 
     | 
    
         
             
            - web/locales/ur.yml
         
     | 
| 
      
 168 
     | 
    
         
            +
            - web/locales/vi.yml
         
     | 
| 
       187 
169 
     | 
    
         
             
            - web/locales/zh-cn.yml
         
     | 
| 
       188 
170 
     | 
    
         
             
            - web/locales/zh-tw.yml
         
     | 
| 
       189 
171 
     | 
    
         
             
            - web/views/_footer.erb
         
     | 
| 
         @@ -204,11 +186,11 @@ files: 
     | 
|
| 
       204 
186 
     | 
    
         
             
            - web/views/retry.erb
         
     | 
| 
       205 
187 
     | 
    
         
             
            - web/views/scheduled.erb
         
     | 
| 
       206 
188 
     | 
    
         
             
            - web/views/scheduled_job_info.erb
         
     | 
| 
       207 
     | 
    
         
            -
            homepage:  
     | 
| 
      
 189 
     | 
    
         
            +
            homepage: https://sidekiq.org
         
     | 
| 
       208 
190 
     | 
    
         
             
            licenses:
         
     | 
| 
       209 
191 
     | 
    
         
             
            - LGPL-3.0
         
     | 
| 
       210 
192 
     | 
    
         
             
            metadata: {}
         
     | 
| 
       211 
     | 
    
         
            -
            post_install_message: 
     | 
| 
      
 193 
     | 
    
         
            +
            post_install_message:
         
     | 
| 
       212 
194 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       213 
195 
     | 
    
         
             
            require_paths:
         
     | 
| 
       214 
196 
     | 
    
         
             
            - lib
         
     | 
| 
         @@ -216,15 +198,15 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       216 
198 
     | 
    
         
             
              requirements:
         
     | 
| 
       217 
199 
     | 
    
         
             
              - - ">="
         
     | 
| 
       218 
200 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       219 
     | 
    
         
            -
                  version: 2. 
     | 
| 
      
 201 
     | 
    
         
            +
                  version: 2.5.0
         
     | 
| 
       220 
202 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       221 
203 
     | 
    
         
             
              requirements:
         
     | 
| 
       222 
204 
     | 
    
         
             
              - - ">="
         
     | 
| 
       223 
205 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       224 
206 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       225 
207 
     | 
    
         
             
            requirements: []
         
     | 
| 
       226 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
       227 
     | 
    
         
            -
            signing_key: 
     | 
| 
      
 208 
     | 
    
         
            +
            rubygems_version: 3.1.4
         
     | 
| 
      
 209 
     | 
    
         
            +
            signing_key:
         
     | 
| 
       228 
210 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       229 
211 
     | 
    
         
             
            summary: Simple, efficient background processing for Ruby
         
     | 
| 
       230 
212 
     | 
    
         
             
            test_files: []
         
     | 
    
        data/.circleci/config.yml
    DELETED
    
    | 
         @@ -1,61 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            version: 2
         
     | 
| 
       2 
     | 
    
         
            -
            references:
         
     | 
| 
       3 
     | 
    
         
            -
              unit: &unit
         
     | 
| 
       4 
     | 
    
         
            -
                run:
         
     | 
| 
       5 
     | 
    
         
            -
                  name: Run test suite
         
     | 
| 
       6 
     | 
    
         
            -
                  command: bundle exec rake
         
     | 
| 
       7 
     | 
    
         
            -
              restore: &restore
         
     | 
| 
       8 
     | 
    
         
            -
                restore_cache:
         
     | 
| 
       9 
     | 
    
         
            -
                  keys:
         
     | 
| 
       10 
     | 
    
         
            -
                    - v1-dependencies-{{ checksum "Gemfile.lock" }}
         
     | 
| 
       11 
     | 
    
         
            -
                    # fallback to using the latest cache if no exact match is found
         
     | 
| 
       12 
     | 
    
         
            -
                    - v1-dependencies-
         
     | 
| 
       13 
     | 
    
         
            -
              bundle: &bundle
         
     | 
| 
       14 
     | 
    
         
            -
                run:
         
     | 
| 
       15 
     | 
    
         
            -
                  name: install dependencies
         
     | 
| 
       16 
     | 
    
         
            -
                  command: |
         
     | 
| 
       17 
     | 
    
         
            -
                    bundle install --jobs=4 --retry=3 --path vendor/bundle
         
     | 
| 
       18 
     | 
    
         
            -
              save: &save
         
     | 
| 
       19 
     | 
    
         
            -
                save_cache:
         
     | 
| 
       20 
     | 
    
         
            -
                  paths:
         
     | 
| 
       21 
     | 
    
         
            -
                    - ./vendor/bundle
         
     | 
| 
       22 
     | 
    
         
            -
                  key: v1-dependencies-{{ checksum "Gemfile.lock" }}
         
     | 
| 
       23 
     | 
    
         
            -
            jobs:
         
     | 
| 
       24 
     | 
    
         
            -
              "ruby-2.5":
         
     | 
| 
       25 
     | 
    
         
            -
                docker:
         
     | 
| 
       26 
     | 
    
         
            -
                  - image: circleci/ruby:2.5
         
     | 
| 
       27 
     | 
    
         
            -
                  - image: circleci/redis:4.0
         
     | 
| 
       28 
     | 
    
         
            -
                steps:
         
     | 
| 
       29 
     | 
    
         
            -
                  - checkout
         
     | 
| 
       30 
     | 
    
         
            -
                  - <<: *restore
         
     | 
| 
       31 
     | 
    
         
            -
                  - <<: *bundle
         
     | 
| 
       32 
     | 
    
         
            -
                  - <<: *save
         
     | 
| 
       33 
     | 
    
         
            -
                  - <<: *unit
         
     | 
| 
       34 
     | 
    
         
            -
              "ruby-2.6":
         
     | 
| 
       35 
     | 
    
         
            -
                docker:
         
     | 
| 
       36 
     | 
    
         
            -
                  - image: circleci/ruby:2.6
         
     | 
| 
       37 
     | 
    
         
            -
                  - image: circleci/redis:4.0
         
     | 
| 
       38 
     | 
    
         
            -
                steps:
         
     | 
| 
       39 
     | 
    
         
            -
                  - checkout
         
     | 
| 
       40 
     | 
    
         
            -
                  - <<: *restore
         
     | 
| 
       41 
     | 
    
         
            -
                  - <<: *bundle
         
     | 
| 
       42 
     | 
    
         
            -
                  - <<: *save
         
     | 
| 
       43 
     | 
    
         
            -
                  - <<: *unit
         
     | 
| 
       44 
     | 
    
         
            -
              "jruby":
         
     | 
| 
       45 
     | 
    
         
            -
                docker:
         
     | 
| 
       46 
     | 
    
         
            -
                  - image: circleci/jruby:latest
         
     | 
| 
       47 
     | 
    
         
            -
                  - image: circleci/redis:4.0
         
     | 
| 
       48 
     | 
    
         
            -
                steps:
         
     | 
| 
       49 
     | 
    
         
            -
                  - checkout
         
     | 
| 
       50 
     | 
    
         
            -
                  - <<: *restore
         
     | 
| 
       51 
     | 
    
         
            -
                  - <<: *bundle
         
     | 
| 
       52 
     | 
    
         
            -
                  - <<: *save
         
     | 
| 
       53 
     | 
    
         
            -
                  - <<: *unit
         
     | 
| 
       54 
     | 
    
         
            -
             
     | 
| 
       55 
     | 
    
         
            -
            workflows:
         
     | 
| 
       56 
     | 
    
         
            -
              version: 2
         
     | 
| 
       57 
     | 
    
         
            -
              build:
         
     | 
| 
       58 
     | 
    
         
            -
                jobs:
         
     | 
| 
       59 
     | 
    
         
            -
                  - "ruby-2.5"
         
     | 
| 
       60 
     | 
    
         
            -
                  - "ruby-2.6"
         
     | 
| 
       61 
     | 
    
         
            -
                  - "jruby"
         
     | 
    
        data/.github/issue_template.md
    DELETED
    
    | 
         @@ -1,11 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            Ruby version:
         
     | 
| 
       2 
     | 
    
         
            -
            Sidekiq / Pro / Enterprise version(s):
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            Please include your initializer and any error message with the full backtrace.
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            Are you using an old version?
         
     | 
| 
       7 
     | 
    
         
            -
            Have you checked the changelogs to see if your issue has been fixed in a later version?
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            https://github.com/mperham/sidekiq/blob/master/Changes.md
         
     | 
| 
       10 
     | 
    
         
            -
            https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md
         
     | 
| 
       11 
     | 
    
         
            -
            https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md
         
     | 
    
        data/.travis.yml
    DELETED
    
    
    
        data/bin/sidekiqctl
    DELETED
    
    | 
         @@ -1,20 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            #!/usr/bin/env ruby
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            require 'fileutils'
         
     | 
| 
       4 
     | 
    
         
            -
            require 'sidekiq/api'
         
     | 
| 
       5 
     | 
    
         
            -
            require 'sidekiq/ctl'
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            if ARGV[0] == 'status'
         
     | 
| 
       8 
     | 
    
         
            -
              Sidekiq::Ctl::Status.new.display(ARGV[1])
         
     | 
| 
       9 
     | 
    
         
            -
            else
         
     | 
| 
       10 
     | 
    
         
            -
              if ARGV.length < 2
         
     | 
| 
       11 
     | 
    
         
            -
                Sidekiq::Ctl.print_usage
         
     | 
| 
       12 
     | 
    
         
            -
              else
         
     | 
| 
       13 
     | 
    
         
            -
                stage = ARGV[0]
         
     | 
| 
       14 
     | 
    
         
            -
                pidfile = ARGV[1]
         
     | 
| 
       15 
     | 
    
         
            -
                timeout = ARGV[2].to_i
         
     | 
| 
       16 
     | 
    
         
            -
                timeout = Sidekiq::Ctl::DEFAULT_KILL_TIMEOUT if timeout == 0
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
                Sidekiq::Ctl.new(stage, pidfile, timeout)
         
     | 
| 
       19 
     | 
    
         
            -
              end
         
     | 
| 
       20 
     | 
    
         
            -
            end
         
     | 
    
        data/lib/sidekiq/core_ext.rb
    DELETED
    
    | 
         @@ -1 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            raise "no longer used, will be removed in 5.1"
         
     |