This commit is contained in:
retoor 2025-07-04 09:32:03 +02:00
parent 5c6d837f10
commit 9ba6a28c5c

View File

@ -34,8 +34,9 @@ class BaseMapper:
self.db.commit()
return result
async with self.semaphore:
return await self.loop.run_in_executor(None, _execute)
return _execute()
#async with self.semaphore:
# return await self.loop.run_in_executor(None, _execute)
async def new(self):