fix(poller): initial ready channel

This commit is contained in:
Bo-Yi Wu 2022-11-17 17:32:10 +08:00 committed by Jason Song
parent a13ed0c52e
commit cab56996b7
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ func New(cli client.Client, dispatch func(context.Context, *runnerv1.Task) error
routineGroup: newRoutineGroup(), routineGroup: newRoutineGroup(),
metric: &metric{}, metric: &metric{},
workerNum: workerNum, workerNum: workerNum,
ready: make(chan struct{}, 1),
} }
} }