Skip to content

Commit

Permalink
Renamed sqlite files (bug 944951)
Browse files Browse the repository at this point in the history
Change-Id: Iae7aa34de0bf68da9e422719605753634cc0d113
  • Loading branch information
dolph committed Mar 6, 2012
1 parent 6621c79 commit b68051c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etc/keystone.conf
Expand Up @@ -16,7 +16,7 @@ use_syslog = False
# syslog_log_facility = LOG_LOCAL0

[sql]
connection = sqlite:///bla.db
connection = sqlite:///keystone.db
idle_timeout = 200
min_pool_size = 5
max_pool_size = 10
Expand Down
2 changes: 1 addition & 1 deletion keystone/common/sql/util.py
Expand Up @@ -12,7 +12,7 @@
def setup_test_database():
# TODO(termie): be smart about this
try:
os.unlink('bla.db')
os.unlink('test.db')
except Exception:
pass
migration.db_sync()
2 changes: 1 addition & 1 deletion tests/backend_sql.conf
@@ -1,5 +1,5 @@
[sql]
connection = sqlite:///bla.db
connection = sqlite:///test.db
idle_timeout = 200
min_pool_size = 5
max_pool_size = 10
Expand Down

0 comments on commit b68051c

Please sign in to comment.