Skip to content

Commit

Permalink
Merge pull request moby#39517 from cpuguy83/troubleshoot_more_noise
Browse files Browse the repository at this point in the history
Fix Microsecond -> Millisecond.
  • Loading branch information
thaJeztah authored Jul 13, 2019
2 parents 0e041d6 + 5d81821 commit 47a84dc
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 47a84dc

Please sign in to comment.