diff --git a/manifests/migration/libvirt.pp b/manifests/migration/libvirt.pp index 2a1d6e0d9..8c7837d7d 100644 --- a/manifests/migration/libvirt.pp +++ b/manifests/migration/libvirt.pp @@ -77,12 +77,6 @@ # Defaults to false # Deprecated by transport paramater. # -# [*live_migration_progress_timeout*] -# (optional) Time to wait, in seconds, for migration to make forward progress -# in transferring data before aborting the operation. Set to 0 to disable -# timeouts. -# Defaults to undef -# class nova::migration::libvirt( $transport = undef, $auth = 'none', @@ -98,7 +92,6 @@ class nova::migration::libvirt( $client_extraparams = {}, # DEPRECATED PARAMETERS $use_tls = false, - $live_migration_progress_timeout = undef, ){ include ::nova::deps @@ -114,10 +107,6 @@ class nova::migration::libvirt( $transport_real = 'tcp' } - if $live_migration_progress_timeout { - warning('live_migration_progress_timeout parameter is now deprecated and will be removed in the future release.') - } - validate_re($transport_real, ['^tcp$', '^tls$', '^ssh$'], 'Valid options for transport are tcp, tls, ssh.') validate_re($auth, [ '^sasl$', '^none$' ], 'Valid options for auth are none and sasl.') diff --git a/releasenotes/notes/remove_live_migration_progress_timeout-dc7e79056003c026.yaml b/releasenotes/notes/remove_live_migration_progress_timeout-dc7e79056003c026.yaml new file mode 100644 index 000000000..e615613c6 --- /dev/null +++ b/releasenotes/notes/remove_live_migration_progress_timeout-dc7e79056003c026.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Remove live_migration_progress_timeout parameter