Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nodew committed Dec 9, 2023
1 parent d12fc37 commit 60e8104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,4 +235,4 @@ async def on_prepare(request, response):
if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG)
log.info(f"Listening on {config.HOST}:{config.PORT}")
web.run_app(app, host=config.HOST, port=8081, reuse_port=False)
web.run_app(app, host=config.HOST, port=int(config.PORT), reuse_port=True)

0 comments on commit 60e8104

Please sign in to comment.