(ctx context.Context, job *waveobj.Job)
| 231 | } |
| 232 | |
| 233 | func sendBlockJobStatusEventByJob(ctx context.Context, job *waveobj.Job) { |
| 234 | if job == nil || job.AttachedBlockId == "" { |
| 235 | return |
| 236 | } |
| 237 | SendBlockJobStatusEvent(ctx, job.AttachedBlockId) |
| 238 | } |
| 239 | |
| 240 | func connReconcileWorker() { |
| 241 | defer func() { |
no test coverage detected