This is an automated email from the ASF dual-hosted git repository.

gongchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hertzbeat.git


The following commit(s) were added to refs/heads/master by this push:
     new ac2c4c0f3 [refactor] add override annotation (#1782)
ac2c4c0f3 is described below

commit ac2c4c0f37dd95085ab22fc661d320aa53d68c07
Author: handy <[email protected]>
AuthorDate: Sat Apr 20 10:50:10 2024 +0800

    [refactor] add override annotation (#1782)
    
    Co-authored-by: tomsun28 <[email protected]>
---
 .../apache/hertzbeat/warehouse/store/HistoryInfluxdbDataStorage.java   | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/warehouse/src/main/java/org/apache/hertzbeat/warehouse/store/HistoryInfluxdbDataStorage.java
 
b/warehouse/src/main/java/org/apache/hertzbeat/warehouse/store/HistoryInfluxdbDataStorage.java
index 43ad0219a..5c5c851bc 100644
--- 
a/warehouse/src/main/java/org/apache/hertzbeat/warehouse/store/HistoryInfluxdbDataStorage.java
+++ 
b/warehouse/src/main/java/org/apache/hertzbeat/warehouse/store/HistoryInfluxdbDataStorage.java
@@ -300,13 +300,16 @@ public class HistoryInfluxdbDataStorage extends 
AbstractHistoryDataStorage {
 
     private static X509TrustManager defaultTrustManager() {
         return new X509TrustManager() {
+            @Override
             public X509Certificate[] getAcceptedIssuers() {
                 return new X509Certificate[0];
             }
 
+            @Override
             public void checkClientTrusted(X509Certificate[] certs, String 
authType) {
             }
 
+            @Override
             public void checkServerTrusted(X509Certificate[] certs, String 
authType) {
             }
         };


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to