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
The search_index command calls es_conn.indices.get_alias() which causes a deprecation warning from Elasticsearch 7 because it fetches hidden indices as well.
This is annoying for logging because it is send to stdout/stderr.
Solution could be to prevent fetching system indices:
es_conn.indices.get_alias(index='*,-.*')
The text was updated successfully, but these errors were encountered:
The search_index command calls es_conn.indices.get_alias() which causes a deprecation warning from Elasticsearch 7 because it fetches hidden indices as well.
This is annoying for logging because it is send to stdout/stderr.
Solution could be to prevent fetching system indices:
The text was updated successfully, but these errors were encountered: