Files
puppet-nova/manifests/db/sync.pp
Sharat Sharma d90b1c493d Added retries for db_sync
If db sync fails, it is never retried leading to errors. So, this
patch adds retries for db_sync to avoid sync fails.

Change-Id: I9a47da537d9f1554271cb8e1e7284a98d364313c
Closes-Bug: #1628580
2016-09-29 12:45:13 +05:30

33 lines
767 B
Puppet

#
# Class to execute nova dbsync
#
# ==Parameters
#
# [*extra_params*]
# (optional) String of extra command line parameters to append
# to the nova-manage db sync command. These will be inserted in
# the command line between 'nova-manage' and 'db sync'.
# Defaults to undef
#
class nova::db::sync(
$extra_params = undef,
) {
include ::nova::deps
include ::nova::params
exec { 'nova-db-sync':
command => "/usr/bin/nova-manage ${extra_params} db sync",
refreshonly => true,
try_sleep => 5,
tries => 10,
logoutput => on_failure,
subscribe => [
Anchor['nova::install::end'],
Anchor['nova::config::end'],
Anchor['nova::dbsync::begin']
],
notify => Anchor['nova::dbsync::end'],
}
}