[7.x] Restore default metric='_all' to cluster.state()

This commit is contained in:
Seth Michael Larson
2020-03-10 12:08:03 -05:00
committed by GitHub
parent 210fae23d0
commit 8074ff294b
5 changed files with 50 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
{% extends "base" %}
{% block request %}
if index and metric in SKIP_IN_PATH:
metric = "_all"
{{ super()|trim }}
{% endblock %}