mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 01:57:58 +00:00
Merge branch 'asyncio-3.10' into 'master'
fix DeprecationWarnings on 3.10 See merge request pleroma/relay!32
This commit is contained in:
commit
5c5f212d70
|
@ -45,8 +45,9 @@ async def start_webserver():
|
|||
await site.start()
|
||||
|
||||
def main():
|
||||
loop = asyncio.get_event_loop()
|
||||
asyncio.ensure_future(start_webserver())
|
||||
loop = asyncio.new_event_loop()
|
||||
asyncio.set_event_loop(loop)
|
||||
asyncio.ensure_future(start_webserver(), loop=loop)
|
||||
loop.run_forever()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue