To have consistent option group name format across projects, oslo.config now normalizes all non lowercase group names to lowercase when loading conf files. Thus conf files are backwards compatible but option group references in the code must now use lowercase before we update oslo.config. This patch replaces all 'DEFAULT_SERVICETYPE' references to 'default_servicetype' Change-Id: Iccab055c4664e11c9618706e594416194065048b
32 lines
719 B
Plaintext
32 lines
719 B
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = False
|
|
|
|
# Address to bind the API server
|
|
bind_host = 0.0.0.0
|
|
|
|
# Port the bind the API server to
|
|
bind_port = 9696
|
|
|
|
# Path to the extensions
|
|
api_extensions_path = unit/extensions
|
|
|
|
# Paste configuration file
|
|
api_paste_config = api-paste.ini.test
|
|
|
|
# The messaging module to use, defaults to kombu.
|
|
rpc_backend = quantum.openstack.common.rpc.impl_fake
|
|
|
|
lock_path = $state_path/lock
|
|
|
|
[DATABASE]
|
|
sql_connection = 'sqlite:///:memory:'
|
|
|
|
[default_servicetype]
|
|
description = "default service type"
|
|
service_definition=dummy:quantum.tests.unit.dummy_plugin.QuantumDummyPlugin
|
|
|