summaryrefslogtreecommitdiff
path: root/oslo_db/options.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-07-06 15:57:09 +0000
committerGerrit Code Review <review@openstack.org>2016-07-06 15:57:09 +0000
commit3e3db134c0cb33b3626aedae8a74142e661d9910 (patch)
tree87741aa2741cbdd08b46a913116e1ca8d4aa29c5 /oslo_db/options.py
parent24b8812a74979dd6313564d902b28eff562415ba (diff)
parent0a1bae9859079fb21a03716be947c5f1da6db0a2 (diff)
downloadoslo-db-3e3db134c0cb33b3626aedae8a74142e661d9910.tar.gz
Merge "Deprecate config option sqlite_db for removal"
Diffstat (limited to 'oslo_db/options.py')
-rw-r--r--oslo_db/options.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py
index f4bec25..89f4cf7 100644
--- a/oslo_db/options.py
+++ b/oslo_db/options.py
@@ -15,6 +15,9 @@ from oslo_config import cfg
database_opts = [
cfg.StrOpt('sqlite_db',
+ deprecated_for_removal=True,
+ deprecated_reason='Should use config option connection or '
+ 'slave_connection to connect the database.',
deprecated_group='DEFAULT',
default='oslo.sqlite',
help='The file name to use with SQLite.'),