kylixs commented on a change in pull request #8983: URL: https://github.com/apache/dubbo/pull/8983#discussion_r773583303
########## File path: dubbo-metrics/dubbo-metrics-prometheus/src/main/java/org/apache/dubbo/metrics/prometheus/PrometheusMetricsReporter.java ########## @@ -93,7 +94,8 @@ private void exportHttpServer() { } }); - new Thread(prometheusExporterHttpServer::start).start(); + httpServerThread = new Thread(prometheusExporterHttpServer::start); + httpServerThread.start(); Review comment: The `httpServerThread` is terminated after stop http server. -- 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...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org