From 3db35ec5421ba9ea758800f92b4187f3ef6adbc4 Mon Sep 17 00:00:00 2001 From: Prabhjyot Singh Date: Thu, 10 Oct 2024 11:32:04 -0400 Subject: [PATCH] ODP-2387: Set token required false by default which is in sync with hive-3.x (#41) --- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index c07c8ccdd77e..94101eb00380 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -5169,7 +5169,7 @@ public static enum ConfVars { LLAP_PLUGIN_ACL("hive.llap.plugin.acl", "*", "The ACL for LLAP plugin AM endpoint."), LLAP_PLUGIN_ACL_DENY("hive.llap.plugin.acl.blocked", "", "The deny ACL for LLAP plugin AM endpoint."), - LLAP_REMOTE_TOKEN_REQUIRES_SIGNING("hive.llap.remote.token.requires.signing", "true", + LLAP_REMOTE_TOKEN_REQUIRES_SIGNING("hive.llap.remote.token.requires.signing", "false", new StringSet("false", "except_llap_owner", "true"), "Whether the token returned from LLAP management API should require fragment signing.\n" + "True by default; can be disabled to allow CLI to get tokens from LLAP in a secure\n" +