Remove manager option

The 'manager' option in [cells] group was deprecated in Mitaka and
now it is removed completely in newton. There is no impact.

Change-Id: Ia2a5276a6f453db8144cb6b4beab1ac158b4dbf6
This commit is contained in:
ZhongShengping
2016-08-22 14:11:37 +08:00
committed by Ivan Berezovskiy
parent 5075d8b7e8
commit 682e67a19d
2 changed files with 4 additions and 9 deletions

View File

@@ -134,10 +134,6 @@
# #
# DEPRECATED # DEPRECATED
# #
# [*manager*]
# DEPRECATED. Number of instances to update per periodic task run
# Defaults to undef
#
# [*driver*] # [*driver*]
# Cells communication driver to use # Cells communication driver to use
# Defaults to undef # Defaults to undef
@@ -171,17 +167,12 @@ class nova::cells (
$weight_offset = '1.0', $weight_offset = '1.0',
$weight_scale = '1.0', $weight_scale = '1.0',
# Deprecated # Deprecated
$manager = undef,
$driver = undef, $driver = undef,
) { ) {
include ::nova::deps include ::nova::deps
include ::nova::params include ::nova::params
if $manager {
warning('manager parameter is deprecated, has no effect and will be removed in a future release.')
}
if $driver { if $driver {
warning('driver parameter is now deprecated, has no effect and will be removed at Ocata cycle.') warning('driver parameter is now deprecated, has no effect and will be removed at Ocata cycle.')
} }

View File

@@ -0,0 +1,4 @@
---
deprecations:
- The 'manager' option in [cells] group was deprecated in Mitaka and
now it is removed completely in newton. There is no impact.