We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1dc7d commit 6cb5e6bCopy full SHA for 6cb5e6b
hadoop-yarn-project/hadoop-yarn/dev-support/findbugs-exclude.xml
@@ -726,4 +726,10 @@
726
<Package name="org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.placement.schema" />
727
</Match>
728
729
+ <Match>
730
+ <Package name="org.apache.hadoop.yarn.api.records.impl.pb"/>
731
+ <Class name="~.*Impl$"/>
732
+ <Bug pattern="AT_STALE_THREAD_WRITE_OF_PRIMITIVE"/>
733
+ </Match>
734
+
735
</FindBugsFilter>
hadoop-yarn-project/pom.xml
@@ -292,6 +292,10 @@
292
<artifactId>spotbugs-maven-plugin</artifactId>
293
<configuration>
294
<xmlOutput>true</xmlOutput>
295
+ <excludeFilterFile>
296
+ ${basedir}/dev-support/findbugs-exclude.xml
297
+ </excludeFilterFile>
298
+ <effort>Max</effort>
299
</configuration>
300
</plugin>
301
</plugins>
0 commit comments