Remove deprecated nova scheduler filter

The patch removes AvailabilityZoneFilter scheduler filter as it
got deprecated by the Depends-On patch.

Change-Id: I22a42549880de783ec1372592e0bbbe8e1004a43
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Depends-On: https://review.opendev.org/#/c/745605/
This commit is contained in:
Stephen Finucane 2020-08-26 11:34:58 +01:00 committed by Martin Kopec
parent 50bd5aa470
commit 88a49e8468

View File

@ -582,10 +582,13 @@ ComputeFeaturesGroup = [
default=True,
help='Enable special configuration drive with metadata.'),
cfg.ListOpt('scheduler_enabled_filters',
default=["AvailabilityZoneFilter", "ComputeFilter",
"ComputeCapabilitiesFilter", "ImagePropertiesFilter",
"ServerGroupAntiAffinityFilter",
"ServerGroupAffinityFilter"],
default=[
"ComputeFilter",
"ComputeCapabilitiesFilter",
"ImagePropertiesFilter",
"ServerGroupAntiAffinityFilter",
"ServerGroupAffinityFilter",
],
help="A list of enabled filters that Nova will accept as "
"hints to the scheduler when creating a server. If the "
"default value is overridden in nova.conf by the test "