Skip to content

Commit

Permalink
Fix Microsecond -> Milisecond.
Browse files Browse the repository at this point in the history
A bit too quick on the trigger on some text completion I think...

Signed-off-by: Brian Goff <[email protected]>
  • Loading branch information
cpuguy83 committed Jul 13, 2019
1 parent 0e041d6 commit 5d81821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/test/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ func (d *Daemon) StartWithLogFile(out *os.File, providedArgs ...string) error {

select {
case <-ctx.Done():
case <-time.After(500 * time.Microsecond):
case <-time.After(500 * time.Millisecond):
}
continue
}
Expand Down

0 comments on commit 5d81821

Please sign in to comment.