Merge "Config options: centralize section "scheduler""

This commit is contained in:
Jenkins 2015-12-08 21:57:35 +00:00 committed by Gerrit Code Review
commit 5f343ea96c
2 changed files with 4 additions and 11 deletions

View File

@ -19,8 +19,10 @@
from oslo_config import cfg
from nova.conf import scheduler
from nova.conf import serial_console
CONF = cfg.CONF
scheduler.register_opts(CONF)
serial_console.register_opts(CONF)

View File

@ -13,23 +13,14 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_config import cfg
from oslo_log import log as logging
import six
import nova.conf
from nova.scheduler import filters
from nova.scheduler.filters import utils
opts = [
cfg.StrOpt('aggregate_image_properties_isolation_namespace',
help='Force the filter to consider only keys matching '
'the given namespace.'),
cfg.StrOpt('aggregate_image_properties_isolation_separator',
default=".",
help='The separator used between the namespace and keys'),
]
CONF = cfg.CONF
CONF.register_opts(opts)
CONF = nova.conf.CONF
LOG = logging.getLogger(__name__)