Sfoglia il codice sorgente

Fix Microsecond -> Milisecond.

A bit too quick on the trigger on some text completion I think...

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff 6 anni fa
parent
commit
5d818213ff
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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
 			}