Skip to content

Commit

Permalink
QPD-1207 (#140)
Browse files Browse the repository at this point in the history
* QPD-1207#comment edge_connectors query params fix

* QPD-1207#commit version bump
  • Loading branch information
niharp2 committed Sep 17, 2021
1 parent bb06417 commit adf76f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quartic_sdk/_version.py
Expand Up @@ -2,4 +2,4 @@
Refers to the version of the package
"""

__version__ = '2.2.dev393'
__version__ = '2.2.dev1207'
4 changes: 3 additions & 1 deletion quartic_sdk/api_client.py
Expand Up @@ -60,8 +60,10 @@ def edge_connectors(self, query_params={}):
Get the edge connectors method
:param query_params: Dictionary of filter conditions
"""

query_params['parent__isnull'] = True
return_json = self.api_helper.call_api(
Constants.GET_EDGE_CONNECTORS, Constants.API_GET, query_params={"parent__isnull": True}).json()
Constants.GET_EDGE_CONNECTORS, Constants.API_GET, query_params=query_params).json()
return EntityFactory(Constants.EDGE_CONNECTOR_ENTITY, return_json, self.api_helper)

def process_units(self):
Expand Down

0 comments on commit adf76f0

Please sign in to comment.