Repository: hive Updated Branches: refs/heads/branch-3 6535dce08 -> f4ceec4ff
HIVE-19281 : incorrect protocol name for LLAP AM plugin (Sergey Shelukhin, reviewed by Jason Dere) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/f4ceec4f Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/f4ceec4f Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/f4ceec4f Branch: refs/heads/branch-3 Commit: f4ceec4ff99f337f923f08775777b7449cfdd58f Parents: 6535dce Author: sergey <[email protected]> Authored: Wed Apr 25 11:11:22 2018 -0700 Committer: sergey <[email protected]> Committed: Wed Apr 25 11:11:39 2018 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/f4ceec4f/llap-common/src/java/org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java ---------------------------------------------------------------------- diff --git a/llap-common/src/java/org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java b/llap-common/src/java/org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java index 0d04b14..5fcffc1 100644 --- a/llap-common/src/java/org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java +++ b/llap-common/src/java/org/apache/hadoop/hive/llap/protocol/LlapPluginProtocolPB.java @@ -20,7 +20,7 @@ import org.apache.hadoop.security.token.TokenInfo; import org.apache.hadoop.hive.llap.plugin.rpc.LlapPluginProtocolProtos; import org.apache.tez.runtime.common.security.JobTokenSelector; -@ProtocolInfo(protocolName = "org.apache.hadoop.hive.llap.protocol.LlapPluginProtocolBlockingPB", protocolVersion = 1) +@ProtocolInfo(protocolName = "org.apache.hadoop.hive.llap.protocol.LlapPluginProtocolPB", protocolVersion = 1) @TokenInfo(JobTokenSelector.class) @InterfaceAudience.Private public interface LlapPluginProtocolPB extends LlapPluginProtocolProtos.LlapPluginProtocol.BlockingInterface {
