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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8cb39e3b3 [GOBBLIN-1897] Fix the findBugsMain complaining redundant 
null check after adding annotation of EqualsAndHashCode (#3761)
8cb39e3b3 is described below

commit 8cb39e3b31ac09d53faa61940a4169d68eec4b21
Author: Zihan Li <[email protected]>
AuthorDate: Tue Sep 5 18:03:24 2023 -0700

    [GOBBLIN-1897] Fix the findBugsMain complaining redundant null check after 
adding annotation of EqualsAndHashCode (#3761)
    
    * address comments
    
    * use connectionmanager when httpclient is not cloesable
    
    * [hotfix] Fix the findBugsMain complaining redundant null check after 
adding annotation of EqualsAndHashCode
    
    ---------
    
    Co-authored-by: Zihan Li <[email protected]>
---
 ligradle/findbugs/findbugsExclude.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ligradle/findbugs/findbugsExclude.xml 
b/ligradle/findbugs/findbugsExclude.xml
index d064047af..82219aef0 100644
--- a/ligradle/findbugs/findbugsExclude.xml
+++ b/ligradle/findbugs/findbugsExclude.xml
@@ -53,4 +53,8 @@
     <Class 
name="org.apache.gobblin.compaction.verify.CompactionTimeRangeVerifier" />
     <Bug pattern="REC_CATCH_EXCEPTION" />
   </Match>
+  <Match>
+    <Class name="org.apache.gobblin.source.extractor.extract.kafka.KafkaTopic" 
/>
+    <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
+  </Match>
 </FindBugsFilter>

Reply via email to