aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/sahara.pp
diff options
context:
space:
mode:
authorCarlos Camacho <ccamacho@redhat.com>2017-02-21 14:58:21 +0100
committerCarlos Camacho <ccamacho@redhat.com>2017-02-22 10:39:44 +0100
commitd0e69f73c1839e9101fd825ae0019f38d624e49f (patch)
treed21bd324731e0a28a803abc009fb42d5ca2c5c18 /manifests/profile/base/sahara.pp
parent47969551159a81cd1a050c3b345892aec0bf7d96 (diff)
Remove the string cast for using transport_url
os_transport_url was updated to allow receiving a string or an integer as parameter. Fixes the workarounds in puppet-tripleo Change-Id: I50993514048bf96b5a42b3425a7d6f98778fe694 Depends-On: I9e56f8e2de542b20fe9e6995506cff5bb435e220
Diffstat (limited to 'manifests/profile/base/sahara.pp')
-rw-r--r--manifests/profile/base/sahara.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/base/sahara.pp b/manifests/profile/base/sahara.pp
index 9633dc3..c9c656d 100644
--- a/manifests/profile/base/sahara.pp
+++ b/manifests/profile/base/sahara.pp
@@ -98,7 +98,7 @@ class tripleo::profile::base::sahara (
default_transport_url => os_transport_url({
'transport' => $oslomsg_rpc_proto,
'hosts' => $oslomsg_rpc_hosts,
- 'port' => sprintf('%s', $oslomsg_rpc_port),
+ 'port' => $oslomsg_rpc_port,
'username' => $oslomsg_rpc_username,
'password' => $oslomsg_rpc_password,
'ssl' => $oslomsg_use_ssl_real,
@@ -108,7 +108,7 @@ class tripleo::profile::base::sahara (
notification_transport_url => os_transport_url({
'transport' => $oslomsg_notify_proto,
'hosts' => $oslomsg_notify_hosts,
- 'port' => sprintf('%s', $oslomsg_notify_port),
+ 'port' => $oslomsg_notify_port,
'username' => $oslomsg_notify_username,
'password' => $oslomsg_notify_password,
'ssl' => $oslomsg_use_ssl_real,