mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
19 lines
359 B
Ruby
Executable file
19 lines
359 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
# Quiet some warnings we see when running in warning mode:
|
|
# RUBYOPT=-w bundle exec sidekiq
|
|
$TESTING = false
|
|
$CELLULOID_DEBUG = false
|
|
|
|
require_relative '../lib/sidekiq/cli'
|
|
|
|
begin
|
|
cli = Sidekiq::CLI.instance
|
|
cli.parse
|
|
cli.run
|
|
rescue => e
|
|
raise e if $DEBUG
|
|
STDERR.puts e.message
|
|
STDERR.puts e.backtrace.join("\n")
|
|
exit 1
|
|
end
|