Merge pull request #312 from enovance/bug/311/bob

[messaging] Remove useless rabbit_hosts parameter (refs: #311)
This commit is contained in:
Emilien Macchi
2014-02-26 15:07:05 +01:00
2 changed files with 1 additions and 3 deletions

View File

@@ -19,7 +19,7 @@
#
# === Parameters:
#
# [*rabbit_hosts*]
# [*rabbit_names*]
# (optional) List of RabbitMQ servers. Should be an array.
# Default value in params
#
@@ -29,7 +29,6 @@
#
class cloud::messaging(
$rabbit_hosts = $os_params::rabbit_hosts,
$rabbit_names = $os_params::rabbit_names,
$rabbit_password = $os_params::rabbit_password
){

View File

@@ -25,7 +25,6 @@ describe 'cloud::messaging' do
let :params do
{
:rabbit_names => ['foo','boo','zoo'],
:rabbit_hosts => ['10.0.0.1','10.0.0.2','10.0.0.3'],
:rabbit_password => 'secrete'
}
end