Skip to content

Commit 46d4aa4

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 793c415 commit 46d4aa4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/org/elasticsearch/action/admin/cluster/stats/ClusterStatsNodes.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,8 @@ static class IngestStats implements ToXContentFragment {
721721
for (Map.Entry<String, List<ProcessorStat>> processorStats : processorStatsForProject.getValue().entrySet()) {
722722
pipelineIdsByProject.computeIfAbsent(projectId, k -> new HashSet<>()).add(processorStats.getKey());
723723
for (ProcessorStat stat : processorStats.getValue()) {
724-
stats.compute(stat.type(), (k, v) -> {org.elasticsearch.ingest.IngestStats.Stats nodeIngestStats = stat.stats();
724+
stats.compute(stat.type(), (k, v) -> {
725+
org.elasticsearch.ingest.IngestStats.Stats nodeIngestStats = stat.stats();
725726
if (v == null) {
726727
return new long[] {
727728
nodeIngestStats.ingestCount(),

0 commit comments

Comments
 (0)