File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
server/src/main/java/org/elasticsearch/action/admin/cluster/stats Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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 (),
You can’t perform that action at this time.
0 commit comments