Skip to content

Commit

Permalink
GUI Path: fix bug with unhandled path
Browse files Browse the repository at this point in the history
Signed-off-by: Dinesh Dutt <dd.ps4u@gmail.com>
  • Loading branch information
ddutt committed May 25, 2024
1 parent 3d8e12f commit e132937
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions suzieq/gui/stlit/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,14 @@ def _get_path(self, forward_dir: bool = True) -> Tuple[pd.DataFrame,
vrf=self._state.vrf)

summ_df = self._path_summarize(df)
else:
df = self._pathobj.get(namespace=[self._state.namespace],
src=self._state.dest,
dest=self._state.source,
vrf=self._state.vrf)

summ_df = self._path_summarize(df)

return df, summ_df

def _get_failed_data(self, namespace: str, pgbar) -> None:
Expand Down

0 comments on commit e132937

Please sign in to comment.