From e90d05d56c3d4088aff80e1da57ad42f9dc210d5 Mon Sep 17 00:00:00 2001 From: zhangyangyang Date: Sat, 30 Sep 2017 17:25:37 +0800 Subject: [PATCH] Remove use_local parameter use_local parameter is deprecated, has no effect and will be removed in the future. Change-Id: I632b826465244180cdd361d23455a5e3ce1df11a --- manifests/conductor.pp | 12 ------------ .../notes/remove_use_local-001a5010d68a58ed.yaml | 5 +++++ 2 files changed, 5 insertions(+), 12 deletions(-) create mode 100644 releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml diff --git a/manifests/conductor.pp b/manifests/conductor.pp index 9cf00c9fc..0dc0511ee 100644 --- a/manifests/conductor.pp +++ b/manifests/conductor.pp @@ -27,26 +27,14 @@ # by the conductor service which is responsible for creating the service entries. # Defaults to $::os_service_default # -# DEPRECATED PARAMETERS -# -# [*use_local*] -# (optional) Perform nova-conductor operations locally -# Defaults to undef -# class nova::conductor( $enabled = true, $manage_service = true, $ensure_package = 'present', $workers = $::os_workers, $enable_new_services = $::os_service_default, - # DEPREACTED PARAMETERS - $use_local = undef, ) { - if $use_local { - warning('use_local parameter is deprecated, has no effect and will be dropped in a future release.') - } - include ::nova::deps include ::nova::db include ::nova::params diff --git a/releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml b/releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml new file mode 100644 index 000000000..c61283dfc --- /dev/null +++ b/releasenotes/notes/remove_use_local-001a5010d68a58ed.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - Remove use_local parameter + use_local parameter is deprecated, has no effect + and will be removed in the future. \ No newline at end of file