Skip to content

Commit b580278

Browse files
committed
Fix path that was updated incorrectly. This path is used to find a saved search for scheduling to run during integtration testing. This bad path causes every integration test to fail.
1 parent d4d7d9d commit b580278

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

contentctl/objects/correlation_search.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,9 @@ def cleanup(self, delete_test_index=False) -> None:
988988
and the cron schedule persist after cleanup
989989
:param delete_test_index: flag indicating whether the test index should be cleared or not (defaults to False)
990990
"""
991+
print("\n\n\n\npre cleanup\n\n\n\n")
992+
_ = input()
993+
print("\n\n\n\ngot user okay\n\n\n\n")
991994
# delete_test_index can't be true when test_index is None
992995
if delete_test_index and (self.test_index is None):
993996
raise ClientError("test_index is None, cannot delete it")

0 commit comments

Comments
 (0)