Ver Fonte

HDDS-608. Access denied exception for user hdfs while making getContainerWithPipeline call. Contributed by Mukul Kumar Singh.

(cherry picked from commit 90552b1ea8380c1155f7000bd9e4c23e709e6970)
Nanda kumar há 6 anos atrás
pai
commit
79d11e50a7

+ 1 - 1
hadoop-hdds/server-scm/src/main/java/org/apache/hadoop/hdds/scm/server/SCMClientProtocolServer.java

@@ -187,7 +187,7 @@ public class SCMClientProtocolServer implements
       }
     }
     String remoteUser = getRpcRemoteUsername();
-    getScm().checkAdminAccess(remoteUser);
+    getScm().checkAdminAccess(null);
     return scm.getContainerManager()
         .getContainerWithPipeline(containerID);
   }