This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch experimental/prometheus_cluster_details_wip in repository https://gitbox.apache.org/repos/asf/storm.git
commit 206275d1f982947ce975e1889dd89675b3fc461b Author: Richard Zowalla <[email protected]> AuthorDate: Fri Jun 7 16:45:28 2024 +0200 WIP --- .../storm/metrics/prometheus/PrometheusPreparableReporter.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/external/storm-metrics-prometheus/src/main/java/org/apache/storm/metrics/prometheus/PrometheusPreparableReporter.java b/external/storm-metrics-prometheus/src/main/java/org/apache/storm/metrics/prometheus/PrometheusPreparableReporter.java index 5d73d2592..861d51e74 100644 --- a/external/storm-metrics-prometheus/src/main/java/org/apache/storm/metrics/prometheus/PrometheusPreparableReporter.java +++ b/external/storm-metrics-prometheus/src/main/java/org/apache/storm/metrics/prometheus/PrometheusPreparableReporter.java @@ -2,9 +2,9 @@ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version * 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - * + * <p> * http://www.apache.org/licenses/LICENSE-2.0 - * + * <p> * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. @@ -38,6 +38,8 @@ public class PrometheusPreparableReporter implements PreparableReporter { static final TrustManager insecureTrustManager = new X509TrustManager() { + + @Override public java.security.cert.X509Certificate[] getAcceptedIssuers() { return null; }
