Skip to content

Commit

Permalink
Merge pull request #302 from steverecio/configure_workers
Browse files Browse the repository at this point in the history
Fixed missing comma in #301
  • Loading branch information
Shiva Poudel committed Apr 28, 2016
2 parents cd1500e + e4ecedd commit 333de56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/gunicorn.erb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ CONFIG = {
'--bind=<%= @bind %>',
<% end -%>
<% if @workers -%>
'--workers=<%= @workers %>'
'--workers=<%= @workers %>',
<% else -%>
'--workers=<%= @processorcount.to_i*2 + 1 %>',
<% end -%>
Expand Down

0 comments on commit 333de56

Please sign in to comment.