Fix wrong rabbit_virtual_host in nova::cells

The wrong rabbit virtual_host is configured in nova::cells.

It should be $::nova::init::rabbit_virtual_host.

Change-Id: Id9af89baed8378586b9c8737cf96faad6d014231
Closes-bug: #1373017
This commit is contained in:
Mathieu Gagné
2014-09-23 12:21:04 -04:00
parent 0c402aeed6
commit cab4cc485b

View File

@@ -221,7 +221,7 @@ class nova::cells (
rabbit_password => $::nova::init::rabbit_password,
rabbit_hosts => $::nova::init::rabbit_hosts,
rabbit_port => $::nova::init::rabbit_port,
rabbit_virtual_host => $::nova::init::virtual_host,
rabbit_virtual_host => $::nova::init::rabbit_virtual_host,
weight_offset => $weight_offset,
weight_scale => $weight_scale,
before => Service['cells']