From d131a1ada2602337b14dc479f1b4e7505370ac97 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 21 Nov 2023 12:25:55 +0900 Subject: [PATCH] Remove deprecated [DEFAULT] onready This option was deprecated a long ago[1] and has had no effect for multiple releases. [1] 46d6b9306c26f36bc2d490afd9fcab30aa4725f5 Change-Id: I0971f67b43292f8794aa3329b2e7dccc67ec3f6f --- heat/common/config.py | 2 -- releasenotes/notes/remove-onready-cdb6f00c50e84587.yaml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/remove-onready-cdb6f00c50e84587.yaml diff --git a/heat/common/config.py b/heat/common/config.py index b96da54aa2..1e1df6f634 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -284,8 +284,6 @@ engine_opts = [ help=_('Stacks containing these tag names will be hidden. ' 'Multiple tags should be given in a comma-delimited ' 'list (eg. hidden_stack_tags=hide_me,me_too).')), - cfg.StrOpt('onready', - help=_('Deprecated.')), cfg.BoolOpt('stack_scheduler_hints', default=False, help=_('When this feature is enabled, scheduler hints' diff --git a/releasenotes/notes/remove-onready-cdb6f00c50e84587.yaml b/releasenotes/notes/remove-onready-cdb6f00c50e84587.yaml new file mode 100644 index 0000000000..adbcdcfb85 --- /dev/null +++ b/releasenotes/notes/remove-onready-cdb6f00c50e84587.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + The ``[DEFAULT] onready`` option has been removed. This option has had + no effect.