From 5c58c044401808f4234876263496e04e207ee54b Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 19 Oct 2025 16:44:37 +0800 Subject: [PATCH] bugfix --- sqlor/dbpools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlor/dbpools.py b/sqlor/dbpools.py index 659dbd1..1224d03 100755 --- a/sqlor/dbpools.py +++ b/sqlor/dbpools.py @@ -47,7 +47,7 @@ class SqlorPool: async def _new_sqlor(self): sqlor = await self.create_func() - sqlor.connect() + await sqlor.connect() x = DictObject(**{ 'used': True, 'use_at': time.time(),