فهرست منبع

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 سال پیش
والد
کامیت
5d818213ff
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
 			}