Skip to content

Commit

Permalink
Merge pull request #32 from beclab/fix/ws_addr
Browse files Browse the repository at this point in the history
fix: adjust WebSocket listening address
  • Loading branch information
eball authored Dec 20, 2024
2 parents e165839 + 8edfab3 commit 15973f0
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 15973f0

Please sign in to comment.