Skip to content
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.

Removed debug print line #36

Merged
Merged
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 agamemnon/plugins/elasticsearch.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def populate_index(self, type, index_name):
for node in node_list: for node in node_list:
key = node.key key = node.key
index_dict = self.populate_index_document(node, index_name) index_dict = self.populate_index_document(node, index_name)
print index_dict
try: try:
self.conn.delete(index_name, type, key) self.conn.delete(index_name, type, key)
except exceptions.NotFoundException: except exceptions.NotFoundException:
Expand Down