We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d15009 commit 1c1e05fCopy full SHA for 1c1e05f
1 file changed
src/chimbuko.cpp
@@ -604,6 +604,15 @@ void Chimbuko::run(unsigned long long& n_func_events,
604
605
//Always dump perf at end
606
m_perf.write();
607
+
608
+ //For debug purposes, write out any unmatched correlation ID events that we encountered as recoverable errors
609
+ if(m_event->getUnmatchCorrelationIDevents().size() > 0){
610
+ for(auto c: m_event->getUnmatchCorrelationIDevents()){
611
+ std::stringstream ss;
612
+ ss << "Unmatched correlation ID: " << c.first << " from event " << c.second->get_json().dump();
613
+ recoverable_error(ss.str());
614
+ }
615
616
617
headProgressStream(m_params.rank) << "driver rank " << m_params.rank << " run complete" << std::endl;
618
}
0 commit comments