mirror of
https://github.com/osmarks/meme-search-engine.git
synced 2025-11-02 16:23:06 +00:00
stop requiring internal aiosqlite patch
This commit is contained in:
4
mse.py
4
mse.py
@@ -83,7 +83,7 @@ class Index:
|
||||
async with self.lock:
|
||||
with ProcessPoolExecutor(max_workers=12) as executor:
|
||||
print("Indexing")
|
||||
conn = await aiosqlite.connect(CONFIG["db_path"], parent_loop=asyncio.get_running_loop())
|
||||
conn = await aiosqlite.connect(CONFIG["db_path"])
|
||||
conn.row_factory = aiosqlite.Row
|
||||
await conn.executescript("""
|
||||
CREATE TABLE IF NOT EXISTS files (
|
||||
@@ -223,4 +223,4 @@ if __name__ == "__main__":
|
||||
loop = asyncio.new_event_loop()
|
||||
asyncio.set_event_loop(loop)
|
||||
loop.run_until_complete(main())
|
||||
loop.run_forever()
|
||||
loop.run_forever()
|
||||
|
||||
Reference in New Issue
Block a user