Fix a typo in the nova db online data migrations during upgrade.

The last change in
https://review.openstack.org/#/c/428093/19..21/extraconfig/tasks/liberty_to_mitaka_nova_api_upgrade.pp
introduced a small typo in the online_data_migrations command.  This
fixes it.

Related-Bug: #1661202
Change-Id: I5fd58d8c92bf09302f241a83fd44223fce59d248
This commit is contained in:
Sofer Athlan-Guyot 2017-02-17 19:15:43 +01:00
parent 2b1d37b7af
commit 3d70fb6e0d
1 changed files with 3 additions and 3 deletions

View File

@ -61,11 +61,11 @@ if downcase($pacemaker_master) == $::hostname {
command => '/usr/bin/nova-manage api_db sync',
refreshonly => true,
logoutput => on_failure,
notify => Exec['nova-db-online-data-migration']
notify => Exec['nova-db-online-data-migrations']
}
exec { 'nova-db-online-data-migration':
command => '/usr/bin/nova-manage db online_data_migration',
exec { 'nova-db-online-data-migrations':
command => '/usr/bin/nova-manage db online_data_migrations',
refreshonly => true,
logoutput => on_failure,
}