enable query graph with root and depth

Change-Id: I746fe965150777e5273a9cb3c4ac74dabbc1b2ac
This commit is contained in:
emalin 2017-08-09 12:45:31 +03:00
parent 9920388646
commit b25b495536

View File

@ -46,7 +46,8 @@ class TopologyApis(EntityGraphApisBase):
is_admin_project = ctx.get(self.IS_ADMIN_PROJECT_PROPERTY, False)
ga = self.entity_graph.algo
if graph_type == 'tree':
if graph_type == 'tree' or \
((root is not None) and (depth is not None)):
if not query:
LOG.error("Graph-type 'tree' requires a filter.")
raise Exception("Graph-type 'tree' requires a filter.")