zuston commented on code in PR #53:
URL: https://github.com/apache/incubator-uniffle/pull/53#discussion_r919933113


##########
storage/src/main/java/org/apache/uniffle/storage/common/HdfsStorage.java:
##########
@@ -37,10 +37,14 @@ public class HdfsStorage extends AbstractStorage {
   private final String storagePath;
   private final Configuration conf;
   private String storageHost;
+  private final String user;
+  private final boolean securityEnable;
 
-  public HdfsStorage(String path, Configuration conf) {
+  public HdfsStorage(String path, Configuration conf, String user, boolean 
securityEnable) {
     this.storagePath = path;
     this.conf = conf;
+    this.user = user;
+    this.securityEnable = securityEnable;

Review Comment:
   Got it.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to