mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
15 lines
267 B
Ruby
Executable File
15 lines
267 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require_relative '../sidekiq_cluster/cli'
|
|
|
|
Thread.abort_on_exception = true
|
|
|
|
cli = Gitlab::SidekiqCluster::CLI.new
|
|
|
|
begin
|
|
cli.run
|
|
rescue Gitlab::SidekiqCluster::CLI::CommandError => error
|
|
abort error.message
|
|
end
|