Skip to content

Commit e0343cf

Browse files
authored
Initialize db proxy after app is registered
1 parent cc665ff commit e0343cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aidbox_python_sdk/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ async def init_client(settings: Settings):
6666
async def init(app):
6767
app["client"] = await init_client(app["settings"])
6868
app["db"] = DBProxy(app["settings"])
69-
await app["db"].initialize()
7069
await register_app(app["sdk"], app["client"])
70+
await app["db"].initialize()
7171
yield
7272
await app["db"].deinitialize()
7373

0 commit comments

Comments
 (0)