Skip to content

Commit

Permalink
fix: locals not anymore printable (#5699)
Browse files Browse the repository at this point in the history
  • Loading branch information
exu committed Jul 30, 2024
1 parent fb4111f commit b05d133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/api/v1/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func (s TestkubeAPI) InitEvents() {

func (s TestkubeAPI) EventsStreamHandler() fiber.Handler {
return websocket.New(func(c *websocket.Conn) {
s.Log.Debugw("handling websocket connection", "id", c.Params("id"), "locals", c.Locals, "remoteAddr", c.RemoteAddr(), "localAddr", c.LocalAddr())
s.Log.Debugw("handling websocket connection", "id", c.Params("id"), "remoteAddr", c.RemoteAddr(), "localAddr", c.LocalAddr())

// wait for disconnect
// WebsocketLoader will add WebsocketListener which will send data to `c`
Expand Down

0 comments on commit b05d133

Please sign in to comment.