We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7371c commit 133c186Copy full SHA for 133c186
test_elasticsearch/utils.py
@@ -177,9 +177,12 @@ def wipe_data_streams(client):
177
178
179
def wipe_indices(client):
180
- indices = client.cat.indices().strip().splitlines()
+ c = client.cat.indices()
181
+ print('---\n', c, '---\n')
182
+ indices = c.strip().splitlines()
183
if len(indices) > 0:
184
index_names = [i.split(" ")[2] for i in indices]
185
+ print(index_names)
186
client.options(ignore_status=404).indices.delete(
187
index=",".join(index_names),
188
expand_wildcards="all",
0 commit comments