Fix Microsecond -> Milisecond.

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

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2019-07-12 18:41:08 -07:00
parent 0e041d68d8
commit 5d818213ff

View file

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