From 9d304822f6816dd8601dfcf8905edb010b332a8b Mon Sep 17 00:00:00 2001 From: Mingliang Liu Date: Sun, 21 Aug 2016 09:40:29 -0700 Subject: [PATCH] HADOOP-13527. Add Spark to CallerContext LimitedPrivate scope. (Contributed by Weiqing Yang) (cherry picked from commit 115ecb52a86b49aad3d058a6b4c1c7926b8b0a40) --- .../src/main/java/org/apache/hadoop/ipc/CallerContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 b197575e052..e984821c8a4 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 @@ * 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;