Skip to content

Commit

Permalink
Fix syntax error in redis URL in st2.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
shusugmt committed Nov 23, 2017
1 parent 7d76192 commit b9f46e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/stackstorm/bin/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ crudini --set ${ST2_CONF} mistral v2_base_url ${MISTRAL_BASE_URL}
crudini --set ${ST2_CONF} messaging url \
amqp://${RABBITMQ_DEFAULT_USER}:${RABBITMQ_DEFAULT_PASS}@${RABBITMQ_HOST}:${RABBITMQ_PORT}
crudini --set ${ST2_CONF} coordination url \
redis://${REDIS_PASSWORD}@${REDIS_HOST}:${REDIS_PORT}
redis://:${REDIS_PASSWORD}@${REDIS_HOST}:${REDIS_PORT}
crudini --set ${ST2_CONF} database host ${MONGO_HOST}
crudini --set ${ST2_CONF} database port ${MONGO_PORT}
if [ ! -z ${MONGO_DB} ]; then
Expand Down

0 comments on commit b9f46e9

Please sign in to comment.