Skip to content

Commit

Permalink
Update host address (#1766)
Browse files Browse the repository at this point in the history
* Update host address

* Update server.py

* Update to 127.0.0.1

---------

Co-authored-by: Brent Yi <[email protected]>
  • Loading branch information
tancik and brentyi authored Apr 19, 2023
1 parent cbb0511 commit d71a6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nerfstudio/viewer/server/viewer_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(

self.camera_message = None

self.viser_server = ViserServer(host="0.0.0.0", port=websocket_port)
self.viser_server = ViserServer(host="127.0.0.1", port=websocket_port)

self.viser_server.register_handler(TrainingStateMessage, self._handle_training_state_message)
self.viser_server.register_handler(SaveCheckpointMessage, self._handle_save_checkpoint)
Expand Down

0 comments on commit d71a6a3

Please sign in to comment.