Skip to content

Commit

Permalink
Corrected binded server ports
Browse files Browse the repository at this point in the history
  • Loading branch information
ivozilkenat authored May 9, 2024
1 parent eb207a2 commit 9227309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/application/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ async def _gather_tasks(self) -> None:
await asyncio.gather(*tasks)

async def _run_uvicorn_server(self) -> None:
config = uvicorn.Config(self.app, host="127.0.0.1", port=3000)
config = uvicorn.Config(self.app, host="0.0.0.0", port=3000)
server = uvicorn.Server(config)
await server.serve()

0 comments on commit 9227309

Please sign in to comment.