You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When registering a custom index via the python manage.py es add_index --name command, if any errors are encountered creating the index, no error message is displayed and the creating index : {index name} message is displayed.
The es call is self.es.options(ignore_status=400).indices.create(**kwargs), and the returned response is ignored.
The response should be captured and displayed if the command was not successful.
The text was updated successfully, but these errors were encountered:
When registering a custom index via the
python manage.py es add_index --name
command, if any errors are encountered creating the index, no error message is displayed and thecreating index : {index name}
message is displayed.The es call is
self.es.options(ignore_status=400).indices.create(**kwargs)
, and the returned response is ignored.The response should be captured and displayed if the command was not successful.
The text was updated successfully, but these errors were encountered: