Github user hyunsik commented on a diff in the pull request:

    https://github.com/apache/tajo/pull/625#discussion_r34437155
  
    --- Diff: tajo-core/src/main/java/org/apache/tajo/master/TajoMaster.java ---
    @@ -280,19 +280,21 @@ private void checkAndInitializeSystemDirectories() 
throws IOException {
     
         // Get Warehouse dir
         this.wareHousePath = TajoConf.getWarehouseDir(systemConf);
    -    LOG.info("Tajo Warehouse dir: " + wareHousePath);
     
         // Check and Create Warehouse dir
         if (!defaultFS.exists(wareHousePath)) {
           defaultFS.mkdirs(wareHousePath, new 
FsPermission(WAREHOUSE_DIR_PERMISSION));
           LOG.info("Warehouse dir '" + wareHousePath + "' is created");
    +    } else {
    +      LOG.info("Tajo Warehouse dir: " + wareHousePath);
         }
     
         Path stagingPath = TajoConf.getDefaultRootStagingDir(systemConf);
    -    LOG.info("Staging dir: " + wareHousePath);
         if (!defaultFS.exists(stagingPath)) {
           defaultFS.mkdirs(stagingPath, new 
FsPermission(STAGING_ROOTDIR_PERMISSION));
           LOG.info("Staging dir '" + stagingPath + "' is created");
    +    } else {
    +      LOG.info("Staging dir: " + wareHousePath);
    --- End diff --
    
    It should be recover due to the same reason as I commented above.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to