change close to shutdown

This commit is contained in:
Raghotham Murthy 2025-10-11 17:58:08 -07:00
parent 06d02bf3de
commit 97b86226c7
2 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@ class SqliteKVStoreImpl(KVStore):
)
await db.commit()
async def close(self):
async def shutdown(self):
"""Close the persistent connection (only for in-memory databases)."""
if self._conn:
await self._conn.close()