diff --git a/hydra_agent/classes_objects.py b/hydra_agent/classes_objects.py index 1b8dc29..824a9de 100644 --- a/hydra_agent/classes_objects.py +++ b/hydra_agent/classes_objects.py @@ -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) diff --git a/hydra_agent/collections_endpoint.py b/hydra_agent/collections_endpoint.py index 8fc9128..8564913 100644 --- a/hydra_agent/collections_endpoint.py +++ b/hydra_agent/collections_endpoint.py @@ -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) diff --git a/hydra_agent/hydra_graph.py b/hydra_agent/hydra_graph.py index 756c9fb..1e1f848 100644 --- a/hydra_agent/hydra_graph.py +++ b/hydra_agent/hydra_graph.py @@ -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)