Repository: tez Updated Branches: refs/heads/branch-0.7 52f8cd940 -> e2cf5cc70
TEZ-2755. Fix findbugs warning in TezClient (cherry picked from commit eeac7a92cb4d3640b2811135e4facb32ea1f10b3) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/e2cf5cc7 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/e2cf5cc7 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/e2cf5cc7 Branch: refs/heads/branch-0.7 Commit: e2cf5cc70254ff0f5f1a1392bae1bd5eb041ffc4 Parents: 52f8cd9 Author: Jonathan Eagles <[email protected]> Authored: Wed Sep 2 15:30:58 2015 -0500 Committer: Jonathan Eagles <[email protected]> Committed: Wed Sep 2 15:30:58 2015 -0500 ---------------------------------------------------------------------- CHANGES.txt | 1 + tez-api/findbugs-exclude.xml | 6 ++++++ 2 files changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/e2cf5cc7/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index c683819..9c30d54 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,7 @@ Release 0.7.1: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2755. Fix findbugs warning in TezClient TEZ-2602. Throwing EOFException when launching MR job TEZ-2575. Handle KeyValue pairs size which do not fit in a single block in PipelinedSorter TEZ-2198. Fix sorter spill counts http://git-wip-us.apache.org/repos/asf/tez/blob/e2cf5cc7/tez-api/findbugs-exclude.xml ---------------------------------------------------------------------- diff --git a/tez-api/findbugs-exclude.xml b/tez-api/findbugs-exclude.xml index 07792e6..9af7e5a 100644 --- a/tez-api/findbugs-exclude.xml +++ b/tez-api/findbugs-exclude.xml @@ -86,6 +86,12 @@ </Match> <Match> + <Class name="org.apache.tez.client.TezClient"/> + <Method name="stop"/> + <Bug pattern="SWL_SLEEP_WITH_LOCK_HELD"/> + </Match> + + <Match> <Class name="org.apache.tez.dag.api.EdgeManagerPluginOnDemand$EventRouteMetadata"/> <Method name="getSourceIndices"/> <Bug pattern="EI_EXPOSE_REP"/>
