Merge pull request #39517 from cpuguy83/troubleshoot_more_noise

Fix Microsecond -> Millisecond.
This commit is contained in:
Sebastiaan van Stijn 2019-07-13 04:10:17 +02:00 committed by GitHub
commit 47a84dcc64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}