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 5d818213ff)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Brian Goff 2019-07-12 18:41:08 -07:00 committed by Sebastiaan van Stijn
parent 05c096a1ac
commit eeeb2e941d
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

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