Skip to content

Commit

Permalink
fix Bug #925 namespace not correctly assigend
Browse files Browse the repository at this point in the history
Signed-off-by: Sepehr-A <sepehr@stardustsystems.net>
  • Loading branch information
Sepehr-A committed Apr 4, 2024
1 parent 8644126 commit ee1b366
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion suzieq/engines/pandas/topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def __init__(self, baseobj):
self.lsdb = pd.DataFrame()
self._a_df = pd.DataFrame()
self._ip_table = pd.DataFrame()
self._namespaces = []

@staticmethod
def table_name():
Expand Down Expand Up @@ -77,7 +78,7 @@ class Services:
extra_cols: list
augment: any

self._namespaces = kwargs.get("namespace", self.ctxt.namespace)
self._namespaces = kwargs.get("namespace", self.ctxt.namespace) or []
hostname = kwargs.pop('hostname', [])
user_query = kwargs.pop('query_str', '')
polled = kwargs.pop('polled', '')
Expand Down

0 comments on commit ee1b366

Please sign in to comment.