Skip to content

Commit

Permalink
attempt to print error
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Apr 1, 2024
1 parent 27f5786 commit 182243c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,5 @@ async def widget(widget_name):
else:
from hypercorn.config import Config
from hypercorn.asyncio import serve
config = Config()
config.bind = [f"0.0.0.0:{port}"]
asyncio.run(serve(app, config))
config = Config(bind=f"0.0.0.0:{port}")
print(asyncio.run(serve(app, config)))

0 comments on commit 182243c

Please sign in to comment.