Merge pull request #39517 from cpuguy83/troubleshoot_more_noise
Fix Microsecond -> Millisecond.
This commit is contained in:
commit
47a84dcc64
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue