Replace reference to deprecated [service_available] aodh_plugin

This option was deprecated in favor of the new aodh option. However
the old name is still used by code which causes the following warning
message.

WARNING oslo_config.cfg [-] Config option service_available.aodh_plugin
is deprecated. Use option service_available.aodh instead.

Change-Id: If10cec87a2f07f9dbe09005bb22070ca7a6e9364
This commit is contained in:
Takashi Kajinami 2023-03-22 00:05:08 +09:00
parent 5ba27fb82d
commit c6061685cc
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class BaseAlarmingTest(tempest.test.BaseTestCase):
@classmethod
def skip_checks(cls):
super(BaseAlarmingTest, cls).skip_checks()
if not CONF.service_available.aodh_plugin:
if not CONF.service_available.aodh:
raise cls.skipException("Aodh support is required")
@classmethod