Browse Source

Merge pull request #4710 from fatalbanana/py36

[Test] Fix dummy http server on python 3.6
tags/3.8.0
Vsevolod Stakhov 7 months ago
parent
commit
46c95a3fae
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      test/functional/util/dummy_http.py

+ 2
- 1
test/functional/util/dummy_http.py View File

@@ -141,4 +141,5 @@ async def main():
await asyncio.Event().wait()

if __name__ == "__main__":
asyncio.run(main())
loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Loading…
Cancel
Save