Skip to content

Commit 80e77b2

Browse files
committed
Fix to get a newline after program:
This was causing redis server to not start up as command string was coming in same line as program:
1 parent 1390649 commit 80e77b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dockers/docker-database/supervisord.conf.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ stderr_logfile=syslog
2020
{% if INSTANCES %}
2121
{% for redis_inst, redis_items in INSTANCES.iteritems() %}
2222
[program: {{ redis_inst }}]
23-
{%- if redis_items['hostname'] != '127.0.0.1'-%}
24-
{%- set LOOPBACK_IP = '127.0.0.1'-%}
23+
{% if redis_items['hostname'] != '127.0.0.1' %}
24+
{%- set LOOPBACK_IP = '127.0.0.1' -%}
2525
{%- else -%}
2626
{%- set LOOPBACK_IP = '' -%}
2727
{%- endif -%}

0 commit comments

Comments
 (0)