Skip to content

Commit

Permalink
fix: adjust WebSocket listening address
Browse files Browse the repository at this point in the history
  • Loading branch information
aby913 committed Dec 20, 2024
1 parent e165839 commit 8edfab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/websocket/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (server *Server) ServerRun() {
server.app.Post("/tapr/ws/conn/debug", server.controller.DebugFunc)

klog.Info("websocket server listening on 40010")
klog.Fatal(server.app.Listen("127.0.0.1:40010"))
klog.Fatal(server.app.Listen(":40010"))
}

func (s *Server) getEnvAppInfo() {
Expand Down

0 comments on commit 8edfab3

Please sign in to comment.