Skip to content

Commit

Permalink
Add receiveTimeout to hooks and tracing (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa committed Sep 24, 2023
1 parent 97723e4 commit 3337545
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ var runCmd = &cobra.Command{
attribute.String("address", client.Address),
attribute.Int("receiveChunkSize", client.ReceiveChunkSize),
attribute.String("receiveDeadline", client.ReceiveDeadline.String()),
attribute.String("receiveTimeout", client.ReceiveTimeout.String()),
attribute.String("sendDeadline", client.SendDeadline.String()),
attribute.Bool("tcpKeepAlive", client.TCPKeepAlive),
attribute.String("tcpKeepAlivePeriod", client.TCPKeepAlivePeriod.String()),
Expand All @@ -460,6 +461,7 @@ var runCmd = &cobra.Command{
"address": client.Address,
"receiveChunkSize": client.ReceiveChunkSize,
"receiveDeadline": client.ReceiveDeadline.String(),
"receiveTimeout": client.ReceiveTimeout.String(),
"sendDeadline": client.SendDeadline.String(),
"tcpKeepAlive": client.TCPKeepAlive,
"tcpKeepAlivePeriod": client.TCPKeepAlivePeriod.String(),
Expand Down

0 comments on commit 3337545

Please sign in to comment.