Skip to content

Commit

Permalink
Include original error in message here
Browse files Browse the repository at this point in the history
  • Loading branch information
mlrsmith committed Nov 7, 2024
1 parent d0681ec commit aa2acb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ func (req *connRequest) Accept() (Conn, error) {
// Create a new socket ID
socketId, err := req.generateSocketId()
if err != nil {
return nil, fmt.Errorf("could not generate socket id")
return nil, fmt.Errorf("could not generate socket id: %w", err)
}

// Select the largest TSBPD delay advertised by the caller, but at least 120ms
Expand Down

0 comments on commit aa2acb6

Please sign in to comment.