Переглянути джерело

Merge pull request #39517 from cpuguy83/troubleshoot_more_noise

Fix Microsecond -> Millisecond.
Sebastiaan van Stijn 6 роки тому
батько
коміт
47a84dcc64
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      internal/test/daemon/daemon.go

+ 1 - 1
internal/test/daemon/daemon.go

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