mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
![jc00ke](/assets/img/avatar_default.png)
This works on a single instance deploy on EY. Haven't tested it on a multi-server environment yet.
28 lines
533 B
Text
28 lines
533 B
Text
---
|
|
<% if @verbose %>
|
|
:verbose: <%= @verbose %>
|
|
<% end %>
|
|
<% if @namespace %>
|
|
:namespace: <%= @namespace %>
|
|
<% end %>
|
|
<% if @server %>
|
|
:server: <%= @server %>
|
|
<% end %>
|
|
<% if @environment %>
|
|
:environment: <%= @environment %>
|
|
<% end %>
|
|
<% if @require %>
|
|
:require: <%= @require %>
|
|
<% end %>
|
|
<% if @pidfile %>
|
|
:pidfile: <%= @pidfile %>
|
|
<% end %>
|
|
<% if @concurrency %>
|
|
:concurrency: <%= @concurrency %>
|
|
<% end %>
|
|
<% if @queues %>
|
|
:queues:
|
|
<% @queues.each do |name, priority| %>
|
|
- [<%= name %>, <%= priority %>]
|
|
<% end %>
|
|
<% end %>
|