Skip to content

Commit

Permalink
Fix for EndPaths in DependecyGraph - 14_0_X
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianoDee authored Apr 16, 2024
1 parent 93ed971 commit 1ae0f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FWCore/Services/plugins/DependencyGraph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ void DependencyGraph::preBeginJob(PathsAndConsumesOfModulesBase const &pathsAndC
auto &graph = m_graph.create_subgraph();

// set the subgraph name property to the EndPath name
boost::get_property(graph, boost::graph_name) = paths[i];
boost::get_property(graph, boost::graph_graph_attribute)["label"] = "EndPath " + paths[i];
boost::get_property(graph, boost::graph_name) = endps[i];
boost::get_property(graph, boost::graph_graph_attribute)["label"] = "EndPath " + endps[i];
boost::get_property(graph, boost::graph_graph_attribute)["labelloc"] = "bottom";

// add to the subgraph the node corresponding to the scheduled modules on the EndPath
Expand Down

0 comments on commit 1ae0f4c

Please sign in to comment.