From 579c98a2eba26d65031385e6e46bda96e2f5131d Mon Sep 17 00:00:00 2001 From: Esra Celik Date: Mon, 16 May 2016 10:33:28 +0300 Subject: [PATCH] Improve the help text for cells options (8) - Deprecated note added for cells.driver option. - Reno added for the deprecated option cells.driver. Implements blueprint centralize-config-options-newton Change-Id: I2addaa18cc9cbdbbcc90f2e514023ebf826d82f0 --- nova/conf/cells.py | 6 ++++-- .../deprecate-cells-driver-options-473893e4e87f95c2.yaml | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/deprecate-cells-driver-options-473893e4e87f95c2.yaml diff --git a/nova/conf/cells.py b/nova/conf/cells.py index 2c283c273104..8b36ada5be2c 100644 --- a/nova/conf/cells.py +++ b/nova/conf/cells.py @@ -363,8 +363,10 @@ Related options: cell_manager_opts = [ cfg.StrOpt('driver', default='nova.cells.rpc_driver.CellsRPCDriver', - help=""" -Cells communication driver + deprecated_for_removal=True, + deprecated_reason='The only available driver ' + 'is the RPC driver.', + help="""Cells communication driver Driver for cell<->cell communication via RPC. This is used to setup the RPC consumers as well as to send a message to another cell. diff --git a/releasenotes/notes/deprecate-cells-driver-options-473893e4e87f95c2.yaml b/releasenotes/notes/deprecate-cells-driver-options-473893e4e87f95c2.yaml new file mode 100644 index 000000000000..cbb8e638c250 --- /dev/null +++ b/releasenotes/notes/deprecate-cells-driver-options-473893e4e87f95c2.yaml @@ -0,0 +1,5 @@ +--- +deprecations: + - | + The cells.driver configuration option is now deprecated and + will be removed at Ocata cycle.