use run_until_complete
This commit is contained in:
parent
148ec0fcb7
commit
dc589d9f3e
1 changed files with 2 additions and 1 deletions
3
memed.py
3
memed.py
|
@ -213,8 +213,9 @@ def main():
|
||||||
coro = asyncio.start_unix_server(handle_client, sys.argv[1],
|
coro = asyncio.start_unix_server(handle_client, sys.argv[1],
|
||||||
loop=loop)
|
loop=loop)
|
||||||
|
|
||||||
pool = loop.create_task(asyncpg.create_pool(**config.db))
|
pool = loop.run_until_complete(asyncpg.create_pool(**config.db))
|
||||||
db = pool
|
db = pool
|
||||||
|
|
||||||
server = loop.run_until_complete(coro)
|
server = loop.run_until_complete(coro)
|
||||||
|
|
||||||
if config.bot_token:
|
if config.bot_token:
|
||||||
|
|
Loading…
Reference in a new issue