removing import of common config because it needs credentials

This commit is contained in:
Chris Alfonso 2012-04-24 17:08:36 -04:00 committed by Angus Salkeld
parent 0fbe418d12
commit 5d1a35fbf5
1 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ supported backend.
import heat.utils
from heat.openstack.common import utils
from heat.openstack.common import cfg
from heat.common import config
#from heat.common import config
import heat.utils
SQL_CONNECTION = 'sqlite:///heat-test.db/'
@ -39,8 +39,8 @@ db_opts = [
help='The backend to use for db'),
]
conf = config.HeatEngineConfigOpts()
conf.db_backend = 'heat.db.sqlalchemy.api'
#conf = config.HeatEngineConfigOpts()
#conf.db_backend = 'heat.db.sqlalchemy.api'
IMPL = heat.utils.LazyPluggable('db_backend',
sqlalchemy='heat.db.sqlalchemy.api')
def configure(conf):