summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core
diff options
context:
space:
mode:
Diffstat (limited to 'clustercontroller-core')
-rw-r--r--clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/LegacyIndexPageRequestHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/LegacyIndexPageRequestHandler.java b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/LegacyIndexPageRequestHandler.java
index a64aad3d5be..3a3503feefa 100644
--- a/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/LegacyIndexPageRequestHandler.java
+++ b/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/LegacyIndexPageRequestHandler.java
@@ -69,8 +69,6 @@ public class LegacyIndexPageRequestHandler implements StatusPageServer.RequestHa
data.getOptions(),
eventLog
);
- // Overview of current config
- data.getOptions().writeHtmlState(content);
// Current cluster state and cluster state history
writeHtmlState(stateVersionTracker, content, request);
} else {
@@ -79,6 +77,8 @@ public class LegacyIndexPageRequestHandler implements StatusPageServer.RequestHa
}
// State of master election
masterElectionHandler.writeHtmlState(content, data.getOptions().stateGatherCount);
+ // Overview of current config
+ data.getOptions().writeHtmlState(content);
// Event log
eventLog.writeHtmlState(content, null);
response.writeHtmlFooter(content, "");