Skip to content

Commit

Permalink
fix(worker configuration): ensure no leading whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Phobetor committed Jan 4, 2016
1 parent 7c97f16 commit 4bde08d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Resources/views/Supervisor/program.conf.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ command={% block cmd %}php {{ executablePath }} {{ command }} --env={{ app.envir
process_name=%(program_name)s%(process_num)02d
numprocs={{ numprocs|default('1') }}
{% block options %}
{% for name, value in options %}{{ name }}={{ value }}
{% endfor %}
stdout_logfile={{ workerOutputLog }}
stderr_logfile={{ workerErrorLog }}
{% for name, value in options %}{{ name }}={{ value }}
{% endfor %}
stdout_logfile={{ workerOutputLog }}
stderr_logfile={{ workerErrorLog }}
{% endblock options %}

0 comments on commit 4bde08d

Please sign in to comment.