Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 b978de2a9 -> 712aa28d8 refs/heads/4.x-HBase-1.2 75a7a5d5e -> 0e9275859 refs/heads/4.x-HBase-1.3 c42d90aa3 -> f62c7648e refs/heads/5.x-HBase-2.0 8ac5ec08d -> 42f4fed7e refs/heads/master e3faa9549 -> 5fb3f7fa8
PHOENIX-4541 Fix apache-rat-check failures Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/0aa1cfb4 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/0aa1cfb4 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/0aa1cfb4 Branch: refs/heads/master Commit: 0aa1cfb4e14f52c9770d5da5bae7f4868152ca7e Parents: e3faa95 Author: Josh Elser <[email protected]> Authored: Fri Jan 19 11:01:21 2018 -0500 Committer: Josh Elser <[email protected]> Committed: Fri Jan 19 15:58:40 2018 -0500 ---------------------------------------------------------------------- .../phoenix/schema/TablesNotInSyncException.java | 17 +++++++++++++++++ pom.xml | 3 +++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/0aa1cfb4/phoenix-core/src/main/java/org/apache/phoenix/schema/TablesNotInSyncException.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/schema/TablesNotInSyncException.java b/phoenix-core/src/main/java/org/apache/phoenix/schema/TablesNotInSyncException.java index e58df71..dac5b7f 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/schema/TablesNotInSyncException.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/schema/TablesNotInSyncException.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.phoenix.schema; import org.apache.phoenix.exception.SQLExceptionCode; http://git-wip-us.apache.org/repos/asf/phoenix/blob/0aa1cfb4/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 88bf3c3..6d7e3a9 100644 --- a/pom.xml +++ b/pom.xml @@ -473,6 +473,9 @@ <exclude>examples/pig/testdata</exclude> <!-- precommit? --> <exclude>**/patchprocess/**</exclude> + <!-- Argparse is bundled to work around system Python version + issues, compatibile with ALv2 --> + <exclude>bin/argparse-1.4.0/argparse.py</exclude> </excludes> </configuration> </plugin>
