You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2018/04/25 18:11:30 UTC

hive git commit: HIVE-19281 : incorrect protocol name for LLAP AM plugin (Sergey Shelukhin, reviewed by Jason Dere)

Repository: hive
Updated Branches:
  refs/heads/master e89f98c44 -> 6607f8f51


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/6607f8f5
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/6607f8f5
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/6607f8f5

Branch: refs/heads/master
Commit: 6607f8f51849921eb3796c18a58d3f6621a1ab2d
Parents: e89f98c4
Author: sergey <se...@apache.org>
Authored: Wed Apr 25 11:11:22 2018 -0700
Committer: sergey <se...@apache.org>
Committed: Wed Apr 25 11:11:22 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/6607f8f5/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 {