From 4503712b52dc7a10a4d8e9beefd68a8de7e1ffda Mon Sep 17 00:00:00 2001 From: Kiall Mac Innes Date: Thu, 13 Dec 2012 11:06:24 -0800 Subject: [PATCH] Move database_connection sample config to the correct section Change-Id: I0c9cc52d040a4b1ed0a47a72e518f06d70ad37be --- etc/moniker-central.conf.sample | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/etc/moniker-central.conf.sample b/etc/moniker-central.conf.sample index 6ff825ce2..b170d59ad 100644 --- a/etc/moniker-central.conf.sample +++ b/etc/moniker-central.conf.sample @@ -11,10 +11,6 @@ debug = False # Driver used for backend communication (e.g. rpc, bind9, powerdns) #backend_driver=rpc -# Database connection string - to configure options for a given implementation -# like sqlalchemy or other see below -#database_connection = sqlite:///$state_path/moniker.sqlite - # There has to be a better way to set these defaults allowed_rpc_exception_modules = moniker.exceptions, moniker.openstack.common.exception logging_context_format_string = %(asctime)s %(levelname)s %(name)s [%(request_id)s %(user)s %(tenant)s] %(instance)s %(message)s @@ -29,6 +25,9 @@ default_log_levels = amqplib=WARN, sqlalchemy=WARN, boto=WARN, suds=INFO, keysto # Sections for *SQL storages #[storage:sqlalchemy] +# Database connection string - to configure options for a given implementation +# like sqlalchemy or other see below +#database_connection = sqlite:///$state_path/moniker.sqlite #connection_debug = 100 #connection_trace = False #sqlite_synchronous = True