diff options
author | Giulio Fidente <gfidente@redhat.com> | 2014-08-04 21:14:26 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2014-08-04 21:14:26 +0200 |
commit | dc251e33c39b439d79fedd173102073321f286c4 (patch) | |
tree | e0de17c3756d4cfe43c328f062185bdcbc8a53f6 | |
parent | 02772ba2877b9f6d427c6fd760bf19d6334c68a8 (diff) |
fix incorrect reference to rabbit_username
Fixes a typo in nova-compute-config.yaml file where rabbit_username
was mistakenly written as rabbit_user_name; compute nodes received
null as rabbit username as consequence.
Change-Id: I796b9bdccd1863647a667edbbc96731fc924c55d
-rw-r--r-- | nova-compute-config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova-compute-config.yaml b/nova-compute-config.yaml index 081ca81a..ef440a3d 100644 --- a/nova-compute-config.yaml +++ b/nova-compute-config.yaml @@ -40,7 +40,7 @@ resources: service-password: {get_input: neutron_password} admin-password: {get_input: admin_password} rabbit: - username: {get_input: rabbit_user_name} + username: {get_input: rabbit_username} password: {get_input: rabbit_password} live-update: host: {get_input: live_update_host} |