Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion hydra_agent/classes_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ def load_from_server(
# update the properties of the node
node.properties["property_value"] = str(member)
# Use faceted index to handle with comparison in properties.
redis_connection.set((endpoint), member)
self.faceted_indexing(endpoint, redis_connection, member)
class_object_node = node
print(class_object_node)
Expand Down
1 change: 0 additions & 1 deletion hydra_agent/collections_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def collectionobjects(
member[endpoint["@type"]] = str(endpoint["@id"])
node_properties["property_value"] = str(member)
member["type"] = str(endpoint["@type"])
redis_connection.set((endpoint["@id"]), (member))
self.faceted_indexing(
endpoint["@id"], redis_connection, member)
node_properties["properties"] = str(supported_property_list)
Expand Down
1 change: 0 additions & 1 deletion hydra_agent/hydra_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def get_endpoints(self,api_doc, redis_connection):
alias="Entrypoint",
properties=entrypoint_properties)
self.redis_graph.add_node(entrypoint_node)
redis_connection.set("EntryPoint", entrypoint_properties)
return self.get_apistructure(entrypoint_node, api_doc)


Expand Down
Loading