Skip to content
Snippets Groups Projects
Commit 54c09a1e authored by Roel Aaij's avatar Roel Aaij
Browse files

[MEPProvider] Erase transposed marker when discarding slice

parent 3aba51ef
No related branches found
No related tags found
1 merge request!228Fix hang in slices with only run number 0
Pipeline #5473199 passed
...@@ -1672,6 +1672,10 @@ void MEPProvider::transpose( int thread_id ) { ...@@ -1672,6 +1672,10 @@ void MEPProvider::transpose( int thread_id ) {
} }
} else { } else {
// Discard the slice if there is no valid ODIN // Discard the slice if there is no valid ODIN
{
std::scoped_lock lock{m_transpose_mut, m_buffer_mutex};
m_transposed.erase( transpose_it );
}
if ( msgLevel( MSG::DEBUG ) ) { if ( msgLevel( MSG::DEBUG ) ) {
debug() << "Transpose " << thread_id << ": No ODIN; discard slice " << *slice_index << endmsg; debug() << "Transpose " << thread_id << ": No ODIN; discard slice " << *slice_index << endmsg;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment