From 3400ad134b80512fd3a06ff8760e80b0abeaafb6 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 26 Jun 2022 07:45:14 +0900 Subject: [PATCH] Remove [coordination] check_watchers This parameter has had no effect for several cycles and was officially deprecated during Xena cycle[1]. [1] 46ad2786ae48f41a97a014fd140f022ee3ee3c1c Related-Bug: #1929178 Change-Id: I8463537ca09db2f0bc443505afaab6a1f9ff5db2 --- ceilometer/opts.py | 9 +-------- .../notes/remove-check_watchers-a7c955703b6d9f57.yaml | 4 ++++ 2 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 releasenotes/notes/remove-check_watchers-a7c955703b6d9f57.yaml diff --git a/ceilometer/opts.py b/ceilometer/opts.py index 6fded19d2e..496de95c35 100644 --- a/ceilometer/opts.py +++ b/ceilometer/opts.py @@ -85,14 +85,7 @@ def list_opts(): 'left empty, per-deployment central agent and per-host ' 'compute agent won\'t do workload ' 'partitioning and will only function correctly if a ' - 'single instance of that service is running.'), - cfg.FloatOpt( - 'check_watchers', - default=10.0, - deprecated_for_removal=True, - deprecated_reason='This parameter is no longer used.', - help='Number of seconds between checks to see if group ' - 'membership has changed'), + 'single instance of that service is running.') ]), ('event', ceilometer.event.converter.OPTS), ('hardware', itertools.chain( diff --git a/releasenotes/notes/remove-check_watchers-a7c955703b6d9f57.yaml b/releasenotes/notes/remove-check_watchers-a7c955703b6d9f57.yaml new file mode 100644 index 0000000000..ac4281b26a --- /dev/null +++ b/releasenotes/notes/remove-check_watchers-a7c955703b6d9f57.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - | + The ``[coordination] check_watchers`` parameter has been removed.