nova/nova/conf/cache.py
Stephen Finucane 5af99c7545 conf: Make list->dict conversion more specific
All of the Nova configuration options' 'list_opts' functions have been
updated to return dicts rather than lists of tuples. However, two
dependency libraries still return dicts.

Replace the general handling code for this with specific code in the
two offending places. This gives a more actionable resolution.

Blueprint centralize-config-options-ocata
Change-Id: I5ce9ac2037e4374215a96e09e12b0873c31dd27e
2016-09-14 12:10:29 +00:00

28 lines
963 B
Python

# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# Copyright 2016 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_cache import core
def register_opts(conf):
core.configure(conf)
def list_opts():
# The oslo_cache library returns a list of tuples
return dict(core._opts.list_opts())