Repository: hadoop Updated Branches: refs/heads/branch-2 4ba8dbf00 -> 50a8b0eb6
HADOOP-13527. Add Spark to CallerContext LimitedPrivate scope. (Contributed by Weiqing Yang) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/50a8b0eb Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/50a8b0eb Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/50a8b0eb Branch: refs/heads/branch-2 Commit: 50a8b0eb6b220259f0eef4a5bf528e17e54dfc95 Parents: 4ba8dbf Author: Mingliang Liu <[email protected]> Authored: Sun Aug 21 09:40:29 2016 -0700 Committer: Mingliang Liu <[email protected]> Committed: Sun Aug 21 09:41:19 2016 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/ipc/CallerContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/50a8b0eb/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/CallerContext.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/CallerContext.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/CallerContext.java index b197575..e984821 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/CallerContext.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/CallerContext.java @@ -33,7 +33,7 @@ import java.util.Arrays; * This class is immutable. */ @InterfaceAudience.LimitedPrivate({"HBase", "HDFS", "Hive", "MapReduce", - "Pig", "YARN"}) + "Pig", "Spark", "YARN"}) @InterfaceStability.Evolving public class CallerContext { public static final Charset SIGNATURE_ENCODING = StandardCharsets.UTF_8; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
