You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ay...@apache.org on 2023/05/24 16:06:19 UTC

[hive] branch master updated: HIVE-27120: Warn when Authorizer V2 is configured (#4349). (okumin, reviewed by Stamatis Zampetakis, Ayush Saxena, Attila Turoczy)

This is an automated email from the ASF dual-hosted git repository.

ayushsaxena pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 9a35866e739 HIVE-27120: Warn when Authorizer V2 is configured (#4349). (okumin, reviewed by Stamatis Zampetakis, Ayush Saxena, Attila Turoczy)
9a35866e739 is described below

commit 9a35866e7393e98e6b496cee6a406c39af75e1bd
Author: okumin <gi...@okumin.com>
AuthorDate: Thu May 25 01:06:07 2023 +0900

    HIVE-27120: Warn when Authorizer V2 is configured (#4349). (okumin, reviewed by Stamatis Zampetakis, Ayush Saxena, Attila Turoczy)
---
 ql/src/java/org/apache/hadoop/hive/ql/session/SessionState.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/session/SessionState.java b/ql/src/java/org/apache/hadoop/hive/ql/session/SessionState.java
index 620022eda12..c721068d9a7 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/session/SessionState.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/session/SessionState.java
@@ -255,8 +255,8 @@ public class SessionState implements ISessionAuthState{
 
   private String currentCatalog;
 
-  private final String CONFIG_AUTHZ_SETTINGS_APPLIED_MARKER =
-      "hive.internal.ss.authz.settings.applied.marker";
+  private static final String CONFIG_AUTHZ_SETTINGS_APPLIED_MARKER =
+      "_hive.ss.authz.settings.applied.marker";
 
   private String userIpAddress;