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.
1 parent 765ade8 commit e26b62fCopy full SHA for e26b62f
server/src/main/java/org/elasticsearch/cluster/InternalClusterInfoService.java
@@ -207,8 +207,8 @@ void execute() {
207
private void fetchNodesHeapUsage() {
208
shardHeapUsageSupplier.getClusterHeapUsage(ActionListener.releaseAfter(new ActionListener<>() {
209
@Override
210
- public void onResponse(Map<String, ShardHeapUsage> stringHeapUsageMap) {
211
- shardHeapUsages = stringHeapUsageMap;
+ public void onResponse(Map<String, ShardHeapUsage> currentShardHeapUsages) {
+ shardHeapUsages = currentShardHeapUsages;
212
}
213
214
0 commit comments