Skip to content

Fix data race introduced in !3293

Gerhard Raven requested to merge fix-rec!3293 into master

putting mutable in the correct place(s), the compiler correctly refuses to compile the code, as there is a data race when modifying m_histograms_modules in FTTrackMonitor::operator()(..) const as multiple threads will (try to) do this. Solution is to modify the map in initialize instead.

Merge request reports