Skip to content

Commit

Permalink
Fix Odd use of time.Duration (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiquzzaman33 authored and Christoffer Fjellström committed Nov 21, 2018
1 parent f2f0349 commit d0e6ec4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

var (
DefaultTimeout time.Duration = 1000
DefaultTimeout time.Duration = time.Second
)

// One client connect to one server.
Expand All @@ -25,7 +25,7 @@ type Client struct {
conn net.Conn
rw *bufio.ReadWriter

ResponseTimeout time.Duration // response timeout for do() in ms
ResponseTimeout time.Duration // response timeout for do()

ErrorHandler ErrorHandler
}
Expand Down Expand Up @@ -239,7 +239,7 @@ func (client *Client) do(funcname string, data []byte,
client.innerHandler.remove("c")
return
}
var timer = time.After(client.ResponseTimeout * time.Millisecond)
var timer = time.After(client.ResponseTimeout)
select {
case ret := <-result:
return ret.handle, ret.err
Expand Down

0 comments on commit d0e6ec4

Please sign in to comment.