denis-chudov commented on code in PR #6350: URL: https://github.com/apache/ignite-3/pull/6350#discussion_r2249159470
########## modules/metrics/src/main/java/org/apache/ignite/internal/metrics/MetricManagerImpl.java: ########## @@ -121,7 +128,10 @@ public void start(Map<String, MetricExporter> availableExporters) { MetricView conf = metricConfiguration.value(); - for (ExporterView exporter : conf.exporters()) { + List<ExporterView> exporters = StreamSupport.stream(conf.exporters().spliterator(), false).collect(toList()); Review Comment: Hmm, I saw that NamedListView is Iterable, but didn't check whether it already has `stream()` method. Will fix it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org