From 682e67a19d059095b82aa86532baf2a73b9ae52a Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Mon, 22 Aug 2016 14:11:37 +0800 Subject: [PATCH] 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 --- manifests/cells.pp | 9 --------- ...deprecated_cells_manager_option-1a32b6e1c01d2958.yaml | 4 ++++ 2 files changed, 4 insertions(+), 9 deletions(-) create mode 100644 releasenotes/notes/remove_deprecated_cells_manager_option-1a32b6e1c01d2958.yaml diff --git a/manifests/cells.pp b/manifests/cells.pp index d1be93ada..c4f6610a0 100644 --- a/manifests/cells.pp +++ b/manifests/cells.pp @@ -134,10 +134,6 @@ # # DEPRECATED # -# [*manager*] -# DEPRECATED. Number of instances to update per periodic task run -# Defaults to undef -# # [*driver*] # Cells communication driver to use # Defaults to undef @@ -171,17 +167,12 @@ class nova::cells ( $weight_offset = '1.0', $weight_scale = '1.0', # Deprecated - $manager = undef, $driver = undef, ) { include ::nova::deps include ::nova::params - if $manager { - warning('manager parameter is deprecated, has no effect and will be removed in a future release.') - } - if $driver { warning('driver parameter is now deprecated, has no effect and will be removed at Ocata cycle.') } diff --git a/releasenotes/notes/remove_deprecated_cells_manager_option-1a32b6e1c01d2958.yaml b/releasenotes/notes/remove_deprecated_cells_manager_option-1a32b6e1c01d2958.yaml new file mode 100644 index 000000000..9171bce4a --- /dev/null +++ b/releasenotes/notes/remove_deprecated_cells_manager_option-1a32b6e1c01d2958.yaml @@ -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.