Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidekiq.rake « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb9f4c751ed0d83e983397670b41dc3bef5b5aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace :sidekiq do
  def deprecation_warning!
    warn <<~WARNING
      This task is deprecated and will be removed in 13.0 as it is thought to be unused.

      If you are using this task, please comment on the below issue:
        https://gitlab.com/gitlab-org/gitlab/issues/196731
    WARNING
  end

  desc "[DEPRECATED] GitLab | Stop sidekiq"
  task :stop do
    deprecation_warning!

    system(*%w(bin/background_jobs stop))
  end

  desc "[DEPRECATED] GitLab | Start sidekiq"
  task :start do
    deprecation_warning!

    system(*%w(bin/background_jobs start))
  end

  desc '[DEPRECATED] GitLab | Restart sidekiq'
  task :restart do
    deprecation_warning!

    system(*%w(bin/background_jobs restart))
  end

  desc "[DEPRECATED] GitLab | Start sidekiq with launchd on Mac OS X"
  task :launchd do
    deprecation_warning!

    system(*%w(bin/background_jobs start_no_deamonize))
  end
end