Skip to content

Commit

Permalink
Merge pull request #803 from DanilSerd/master
Browse files Browse the repository at this point in the history
Change indices in IndexList to be a deep copy of all_indices
  • Loading branch information
untergeek committed Nov 7, 2016
2 parents a413f9b + ee28732 commit 87e6527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curator/indexlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __get_indices(self):
"""
self.loggit.debug('Getting all indices')
self.all_indices = get_indices(self.client)
self.indices = self.all_indices
self.indices = self.all_indices[:]
self.empty_list_check()
for index in self.indices:
self.__build_index_info(index)
Expand Down

0 comments on commit 87e6527

Please sign in to comment.