Browse Source

Fix aiohttp example's background task (Fixes #881)

pull/850/merge
Miguel Grinberg 3 years ago
parent
commit
fb9648575e
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 8
      examples/server/aiohttp/app.py

8
examples/server/aiohttp/app.py

@ -78,6 +78,10 @@ app.router.add_static('/static', 'static')
app.router.add_get('/', index)
if __name__ == '__main__':
async def init_app():
sio.start_background_task(background_task)
web.run_app(app)
return app
if __name__ == '__main__':
web.run_app(init_app())

Loading…
Cancel
Save