Ver Fonte

Fix Microsecond -> Milisecond.

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

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
(cherry picked from commit 5d818213ff3b9f8cda8e4fb3b071bef8fab782ad)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Brian Goff há 6 anos atrás
pai
commit
eeeb2e941d
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      internal/test/daemon/daemon.go

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

@@ -341,7 +341,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
 			}