Skip to content

Commit

Permalink
Fixes default timeout from Microseconds to Milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Hamilton committed Jan 14, 2019
1 parent 34ebb85 commit e04223b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2
0.0.3
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
)

var (
defaultTimeout = 5000 * time.Microsecond
defaultTimeout = 5000 * time.Millisecond
authMethod string
authToken string
retries int
Expand Down

0 comments on commit e04223b

Please sign in to comment.