diff options
author | Alexey Lebedeff <alebedev@mirantis.com> | 2017-01-27 15:11:33 +0300 |
---|---|---|
committer | Alexey Lebedeff <alebedev@mirantis.com> | 2017-01-27 15:11:33 +0300 |
commit | 7e0ea13b6c5db08672bc0befaf549b79064f098f (patch) | |
tree | 54e81f67633da6147e08259bc0118e0a4838c6b6 | |
parent | 6660baeb8ebdb4e4bfeb1e8178e5806e34e634b9 (diff) |
Use proper variable name for setting LOG_BASE
According to https://www.rabbitmq.com/man/rabbitmq-env.conf.5.man.html,
rabbitmq-env.conf should contain variables without RABBITMQ_ prefix.
Prefixed version works just by an accident (as we've seen with
CTL_ERL_ARGS, where prefixed version is just ignored).
Change-Id: Ideb6967749efa8ba615cd5ab24df630d2ac526fc
Notes
Notes (review):
Verified+1: Mirantis CCP CI <mirantis-fuel-ccp-ci@mirantis.com>
Code-Review+2: Andrey Pavlov <apavlov@mirantis.com>
Code-Review+2: Proskurin Kirill <kproskurin@mirantis.com>
Workflow+1: Proskurin Kirill <kproskurin@mirantis.com>
Verified+2: Jenkins
Submitted-by: Jenkins
Submitted-at: Sat, 28 Jan 2017 12:21:33 +0000
Reviewed-on: https://review.openstack.org/426201
Project: openstack/fuel-ccp-rabbitmq
Branch: refs/heads/master
-rw-r--r-- | service/files/rabbitmq-env.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/files/rabbitmq-env.conf.j2 b/service/files/rabbitmq-env.conf.j2 index e08d1bc..916fce3 100644 --- a/service/files/rabbitmq-env.conf.j2 +++ b/service/files/rabbitmq-env.conf.j2 | |||
@@ -1,3 +1,3 @@ | |||
1 | NODENAME=rabbit@{{ network_topology["private"]["address"] }} | 1 | NODENAME=rabbit@{{ network_topology["private"]["address"] }} |
2 | USE_LONGNAME=true | 2 | USE_LONGNAME=true |
3 | RABBITMQ_LOG_BASE=/var/log/ccp/rabbitmq | 3 | LOG_BASE=/var/log/ccp/rabbitmq |