Skip to content

Commit

Permalink
Merge pull request #44747 from AdrianoDee/patch-11
Browse files Browse the repository at this point in the history
[14_0_X] - Fix for `EndPath`s in `DependecyGraph`
  • Loading branch information
cmsbuild authored Apr 18, 2024
2 parents fb413c5 + 1ae0f4c commit d1880d2
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 d1880d2

Please sign in to comment.