diff options
author | Giulio Fidente <gfidente@redhat.com> | 2015-06-24 10:52:15 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2015-06-24 11:39:13 +0200 |
commit | edc4b049ef49e1107026a2bd309c359761cb34f0 (patch) | |
tree | 194f67a8d75439443742416e65d405ce967faee2 | |
parent | e156bd1bb63389e1af0ee13c85f74f55054a40ad (diff) |
Increase mongodb_conn_validator timeout to 600
This will increase the mongodb_conn_validator timeout from 60 secs
(the default) to 600 secs; it should take much less in normal
circumstances to start mongod but nodes might not be starting it all
at the same time so we use a larger timeframe for the availablity
checks.
Change-Id: I0ee210be94b33d1c08d67f287aa745743a6649d3
-rw-r--r-- | puppet/manifests/overcloud_controller_pacemaker.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/puppet/manifests/overcloud_controller_pacemaker.pp b/puppet/manifests/overcloud_controller_pacemaker.pp index ed4f3512..bf269a2e 100644 --- a/puppet/manifests/overcloud_controller_pacemaker.pp +++ b/puppet/manifests/overcloud_controller_pacemaker.pp @@ -227,6 +227,7 @@ if hiera('step') >= 2 { # NOTE (spredzy) : The replset can only be run # once all the nodes have joined the cluster. mongodb_conn_validator { $mongo_node_ips_with_port : + timeout => '600', require => Pacemaker::Resource::Service[$::mongodb::params::service_name], before => Mongodb_replset[$mongodb_replset], } |