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:
parent
05c096a1ac
commit
eeeb2e941d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue