tortoise / aerich

A database migrations tool for TortoiseORM, ready to production.
https://github.com/tortoise/aerich
Apache License 2.0
830 stars 94 forks source link

Close connections in the init_db wrapper #269

Closed jtraub closed 2 years ago

jtraub commented 2 years ago

This PR fixes #268

Since init_db connects to database we need to close all connections for graceful shutdown.

jtraub commented 2 years ago

Reasoning for the fix is outlined in this comment https://github.com/tortoise/aerich/issues/268#issuecomment-1261554391

long2ice commented 2 years ago

Thanks!