()
| 238 | } |
| 239 | |
| 240 | func connReconcileWorker() { |
| 241 | defer func() { |
| 242 | panichandler.PanicHandler("jobcontroller:connReconcileWorker", recover()) |
| 243 | }() |
| 244 | |
| 245 | for range connStates.reconcileCh { |
| 246 | reconcileAllConns() |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | func reconcileAllConns() { |
| 251 | connStates.Lock() |
no test coverage detected