You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/05/03 09:31:46 UTC

[flink] branch release-1.8 updated: [hotfix][travis] Fix log4j configuration path

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

chesnay pushed a commit to branch release-1.8
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.8 by this push:
     new 22a8099  [hotfix][travis] Fix log4j configuration path
22a8099 is described below

commit 22a809970a1134da7ff75f8fd0beeea87f7e35ea
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Fri May 3 11:30:49 2019 +0200

    [hotfix][travis] Fix log4j configuration path
---
 tools/travis/nightly.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/travis/nightly.sh b/tools/travis/nightly.sh
index 276274d..a6b7619 100755
--- a/tools/travis/nightly.sh
+++ b/tools/travis/nightly.sh
@@ -34,7 +34,7 @@ ARTIFACTS_DIR="${HERE}/artifacts"
 
 mkdir -p $ARTIFACTS_DIR || { echo "FAILURE: cannot create log directory '${ARTIFACTS_DIR}'." ; exit 1; }
 
-LOG4J_PROPERTIES=tools/log4j-travis.properties
+LOG4J_PROPERTIES=${HERE}/../log4j-travis.properties
 
 MVN_LOGGING_OPTIONS="-Dlog.dir=${ARTIFACTS_DIR} -Dlog4j.configuration=file://$LOG4J_PROPERTIES -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
 MVN_COMMON_OPTIONS="-nsu -B -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2 -Dfast"