[
https://issues.apache.org/jira/browse/TAJO-1677?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14624287#comment-14624287
]
ASF GitHub Bot commented on TAJO-1677:
--------------------------------------
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.
> Remove unnecessary messages for the Travis CI build
> ---------------------------------------------------
>
> Key: TAJO-1677
> URL: https://issues.apache.org/jira/browse/TAJO-1677
> Project: Tajo
> Issue Type: Improvement
> Components: Build
> Reporter: Jaehwa Jung
> Assignee: Jaehwa Jung
>
> Currently, the Travis CI build always indicates dependency download progress.
> We need to make it shorter log.
> Here are some logs.
> {code:xml}
> Downloading:
> https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.5/maven-remote-resources-plugin-1.5.pom
> Downloaded:
> https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.5/maven-remote-resources-plugin-1.5.pom
> (14 KB at 25.1 KB/sec)
> Downloading:
> https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom
> Downloaded:
> https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom
> (11 KB at 586.3 KB/sec)
> Downloading:
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom
> Downloaded:
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom
> (32 KB at 1383.6 KB/sec)
> Downloading: https://repo.maven.apache.org/maven2/org/apache/apa
> {code}
> In addition, it seems that there are unnecessary messages besides download
> progress.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)