summaryrefslogtreecommitdiff
path: root/heat/engine/service_software_config.py
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2023-03-23 12:15:08 +0000
committerTakashi Kajinami <tkajinam@redhat.com>2023-03-25 12:02:27 +0900
commit43a5f3984e433ec28616cfe98cb060d9ff51af58 (patch)
tree8c10a86209cf83e07e75846b7880268d2c3473c1 /heat/engine/service_software_config.py
parent586e5b0a75167b20882728f642c8a81195afb71d (diff)
downloadheat-43a5f3984e433ec28616cfe98cb060d9ff51af58.tar.gz
db: Remove layer of indirection
We don't have another ORM to content with here. Simplify 'heat.db.sqlalchemy' to 'heat.db'. Signed-off-by: Stephen Finucane <stephenfin@redhat.com> Change-Id: Id1db6c0ff126859f436c6c9b1187c250f38ebb62
Diffstat (limited to 'heat/engine/service_software_config.py')
-rw-r--r--heat/engine/service_software_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heat/engine/service_software_config.py b/heat/engine/service_software_config.py
index 637d7874e..195397101 100644
--- a/heat/engine/service_software_config.py
+++ b/heat/engine/service_software_config.py
@@ -23,7 +23,7 @@ from urllib import parse
from heat.common import crypt
from heat.common import exception
from heat.common.i18n import _
-from heat.db.sqlalchemy import api as db_api
+from heat.db import api as db_api
from heat.engine import api
from heat.engine import resource
from heat.engine import scheduler