Skip to content

Commit

Permalink
fix: the listening address of signaling server
Browse files Browse the repository at this point in the history
  • Loading branch information
Cifko committed Mar 12, 2024
1 parent c412543 commit d8c464d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Processes/signaling_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def start(self, local_ip: str):
"-b",
os.path.join(DATA_FOLDER, "signaling_server"),
"--listen-addr",
f"{local_ip}:{self.json_rpc_port}",
f"0.0.0.0:{self.json_rpc_port}",
]
self.run()
print("Waiting for signaling server to start.", end="")
Expand Down

0 comments on commit d8c464d

Please sign in to comment.