Skip to content

Commit 77b71b8

Browse files
Merge pull request #94 from ShravanDoda/remove_entry
Removed the line which was explicity setting EntryPoint in redis
2 parents 725cd6a + 693ec62 commit 77b71b8

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

hydra_agent/classes_objects.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ def load_from_server(
169169
# update the properties of the node
170170
node.properties["property_value"] = str(member)
171171
# Use faceted index to handle with comparison in properties.
172-
redis_connection.set((endpoint), member)
173172
self.faceted_indexing(endpoint, redis_connection, member)
174173
class_object_node = node
175174
print(class_object_node)

hydra_agent/collections_endpoint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ def collectionobjects(
127127
member[endpoint["@type"]] = str(endpoint["@id"])
128128
node_properties["property_value"] = str(member)
129129
member["type"] = str(endpoint["@type"])
130-
redis_connection.set((endpoint["@id"]), (member))
131130
self.faceted_indexing(
132131
endpoint["@id"], redis_connection, member)
133132
node_properties["properties"] = str(supported_property_list)

hydra_agent/hydra_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def get_endpoints(self,api_doc, redis_connection):
5454
alias="Entrypoint",
5555
properties=entrypoint_properties)
5656
self.redis_graph.add_node(entrypoint_node)
57-
redis_connection.set("EntryPoint", entrypoint_properties)
5857
return self.get_apistructure(entrypoint_node, api_doc)
5958

6059

0 commit comments

Comments
 (0)