diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2011-12-19 14:58:50 -0600 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@gmail.com> | 2011-12-19 14:58:55 -0600 |
| commit | fa43973e72efa8929abb6057dd2fdc8ad78bd50e (patch) | |
| tree | 5c2a208f4105968649bd80522129da33419fc1a7 | |
| parent | afe1c3236296ebd792e91ae9ec6df519bcf78190 (diff) | |
| download | keystone-fa43973e72efa8929abb6057dd2fdc8ad78bd50e.tar.gz keystone-fa43973e72efa8929abb6057dd2fdc8ad78bd50e.tar.xz keystone-fa43973e72efa8929abb6057dd2fdc8ad78bd50e.zip | |
Revised in-memory sql connection path for sqlalchemy
Source: http://www.sqlalchemy.org/docs/dialects/sqlite.html#using-a-memory-database-in-multiple-threads
Change-Id: Ibd8dcd7dd1a0bf5d5531faf9cebd6d69fbc8b981
| -rw-r--r-- | keystone/test/unit/test_backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/test/unit/test_backends.py b/keystone/test/unit/test_backends.py index 85ebe248..aa6242d7 100644 --- a/keystone/test/unit/test_backends.py +++ b/keystone/test/unit/test_backends.py @@ -28,7 +28,7 @@ class BackendTestCase(unittest.TestCase): options['backends'] = 'keystone.backends.sqlalchemy' if 'keystone.backends.sqlalchemy' not in options: options['keystone.backends.sqlalchemy'] = { - "sql_connection": "sqlite:///", + "sql_connection": "sqlite://", "backend_entities": "['UserRoleAssociation', 'Endpoints',\ 'Role', 'Tenant', 'User',\ 'Credentials', 'EndpointTemplates',\ |
