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.
2 parents 07bc4e1 + 92a283e commit 96b8f2dCopy full SHA for 96b8f2d
meilisearch/index.py
@@ -215,7 +215,7 @@ def wait_for_pending_update(
215
while elapsed_time < timeout_in_ms:
216
get_update = self.get_update_status(update_id)
217
218
- if get_update['status'] != 'enqueued':
+ if get_update['status'] != 'enqueued' and get_update['status'] != 'processing':
219
return get_update
220
sleep(interval_in_ms / 1000)
221
time_delta = datetime.now() - start_time
0 commit comments