This is an automated email from the ASF dual-hosted git repository.
apolovtsev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new f773e0ea76 IGNITE-21752 Improve excludes for generated rest client
(#3412)
f773e0ea76 is described below
commit f773e0ea76f45e18d0230385db3854fab3cb19be
Author: Viacheslav Blinov <[email protected]>
AuthorDate: Thu Mar 14 11:32:43 2024 +0300
IGNITE-21752 Improve excludes for generated rest client (#3412)
---
check-rules/spotbugs-excludes.xml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/check-rules/spotbugs-excludes.xml
b/check-rules/spotbugs-excludes.xml
index 0d828b995a..e111eb9e89 100644
--- a/check-rules/spotbugs-excludes.xml
+++ b/check-rules/spotbugs-excludes.xml
@@ -29,7 +29,7 @@
<Class name="~org\.apache\.ignite\.raft\.jraft\..*" />
<Class name="~com\.facebook\.presto\..*" />
<Class name="~org\.apache\.ignite\.internal\.generated\..*"/>
- <Class name="~org\.apache\.ignite\.rest\.client\.invoker\..*"/>
+ <Class name="~org\.apache\.ignite\.rest\.client\..*"/>
<Annotation name="org.immutables.value.Generated" />
</Or>
</Match>
@@ -192,6 +192,11 @@
<Class name="org.apache.ignite.internal.tx.impl.TxManagerImpl"/>
<Field name="inflights"/>
</Match>
+ <Match>
+ <!-- duplicate reported because constants have same value -->
+ <Bug pattern="DB_DUPLICATE_BRANCHES"/>
+ <Source name="AbstractPageMemoryIndexStorage.java"/>
+ </Match>
<!-- end of false-positive exclusions -->