Repository: hadoop Updated Branches: refs/heads/branch-2.8 8628ad079 -> 9d304822f
HADOOP-13527. Add Spark to CallerContext LimitedPrivate scope. (Contributed by Weiqing Yang) (cherry picked from commit 115ecb52a86b49aad3d058a6b4c1c7926b8b0a40) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/9d304822 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/9d304822 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/9d304822 Branch: refs/heads/branch-2.8 Commit: 9d304822f6816dd8601dfcf8905edb010b332a8b Parents: 8628ad0 Author: Mingliang Liu <[email protected]> Authored: Sun Aug 21 09:40:29 2016 -0700 Committer: Mingliang Liu <[email protected]> Committed: Sun Aug 21 09:42:06 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/9d304822/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]
