repo-updater: potential data race in `DebugDump`
Created by: unknwon
We released the mutex too early and does not make a value copy of *repoUpdate.Repo
field. This field is a pointer and could be mutated inside enqueue:
It happens very rare since this is in the debug endpoint.