Skip to content

Commit

Permalink
Adapted to new server port
Browse files Browse the repository at this point in the history
  • Loading branch information
lukes3315 committed Apr 23, 2024
1 parent 54ad48a commit 094217c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/status_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,6 @@ def start_fe_server(options):
fe_thread = StoppableThread(target=start_fe_server, args=(options,))
fe_thread.start()

app.run(port=4243)
app.run(host="0.0.0.0", port=4243)
fe_thread.stop()
fe_thread.join()
2 changes: 1 addition & 1 deletion python/status_server/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Status Server</title>
<script>
function getStatus() {
fetch('http://mmsdr2.local:4243')
fetch('http://100.64.40.95:4243/')
.then(response => response.json())
.then(data => {
document.getElementById('status').textContent = JSON.stringify(data, null, 2);
Expand Down

0 comments on commit 094217c

Please sign in to comment.