Skip to content

Commit

Permalink
avoid debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
smallnest committed Apr 10, 2024
1 parent 77566af commit 8b5974b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ type Call struct {
}

func (call *Call) done() {
if call.Done == nil { // Oneshot
return
}

select {
case call.Done <- call:
// ok
Expand Down

0 comments on commit 8b5974b

Please sign in to comment.