diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-06-16 23:25:23 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-06-16 23:25:23 +0000 |
commit | 8ca7a1e390ce50ac66a6861dae59bb44fbf0324a (patch) | |
tree | 04380590acfa8f36ed5ec661adc4ddb8c74bec01 /manifests/profile/pacemaker/haproxy_bundle.pp | |
parent | bb7e1829f683ca1cac2034ce0b450c0f7ce483ed (diff) | |
parent | 94f13e66089cc0b18d5b4b2f6e204160d836ac3e (diff) |
Merge "Ensure hiera step value is an integer"
Diffstat (limited to 'manifests/profile/pacemaker/haproxy_bundle.pp')
-rw-r--r-- | manifests/profile/pacemaker/haproxy_bundle.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/pacemaker/haproxy_bundle.pp b/manifests/profile/pacemaker/haproxy_bundle.pp index 292c9dd..9c1bdf3 100644 --- a/manifests/profile/pacemaker/haproxy_bundle.pp +++ b/manifests/profile/pacemaker/haproxy_bundle.pp @@ -43,7 +43,7 @@ class tripleo::profile::pacemaker::haproxy_bundle ( $haproxy_docker_image = hiera('tripleo::profile::pacemaker::haproxy::haproxy_docker_image', undef), $bootstrap_node = hiera('haproxy_short_bootstrap_node_name'), $enable_load_balancer = hiera('enable_load_balancer', true), - $step = hiera('step'), + $step = Integer(hiera('step')), $pcs_tries = hiera('pcs_tries', 20), ) { include ::tripleo::profile::base::haproxy |