Skip to content

Commit

Permalink
feat: graph active node name
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-v4s committed Dec 18, 2024
1 parent 09d2324 commit bbbb1e4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions qualibrate/qualibration_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,14 @@ def completed_count(self) -> int:
)
)

@property
def active_node_name(self) -> Optional[str]:
return (
self._orchestrator.active_node_name
if self._orchestrator is not None
else None
)

def _get_all_nodes_parameters(
self, nodes_parameters: Mapping[str, Any]
) -> Mapping[str, Any]:
Expand Down

0 comments on commit bbbb1e4

Please sign in to comment.