Skip to content

Commit

Permalink
Merge pull request #44742 from AdrianoDee/patch-10
Browse files Browse the repository at this point in the history
Fix for `EndPath`s in `DependecyGraph`
  • Loading branch information
cmsbuild committed Apr 16, 2024
2 parents a8c349a + fe309a5 commit 6e82cc8
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 6e82cc8

Please sign in to comment.