Merge branch 'cassandra-2.2' into cassandra-3.0

This commit is contained in:
Mick Semb Wever 2020-01-29 23:07:57 +01:00
commit 7816301ef2
No known key found for this signature in database
GPG Key ID: E91335D77E3E87CB
2 changed files with 12 additions and 11 deletions

View File

@ -2043,7 +2043,7 @@
</target>
<!-- Publish artifacts to Maven repositories -->
<!-- Installs artifacts to local Maven repository -->
<target name="mvn-install"
depends="maven-declare-dependencies,jar,sources-jar,javadoc-jar"
description="Installs the artifacts in the Maven Local Repository">
@ -2084,8 +2084,9 @@
classifier="javadoc"/>
</target>
<!-- Publish artifacts to remote Maven repository -->
<target name="publish"
depends="mvn-install"
depends="mvn-install,artifacts"
if="release"
description="Publishes the artifacts to the Maven repository">

View File

@ -20,12 +20,12 @@ diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch'
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' cassandra~/conf/cassandra-env.sh cassandra/conf/cassandra-env.sh
--- cassandra~/conf/cassandra-env.sh 2019-06-27 09:35:32.000000000 -0500
+++ cassandra/conf/cassandra-env.sh 2019-06-27 09:42:25.747715490 -0500
@@ -122,7 +122,7 @@
esac
#GC log path has to be defined here because it needs to access CASSANDRA_HOME
-JVM_OPTS="$JVM_OPTS -Xloggc:${CASSANDRA_HOME}/logs/gc.log"
+JVM_OPTS="$JVM_OPTS -Xloggc:/var/log/cassandra/gc.log"
# Here we create the arguments that will get passed to the jvm when
# starting cassandra.
@@ -123,7 +123,7 @@ esac
# Sets the path where logback and GC logs are written.
if [ "x$CASSANDRA_LOG_DIR" = "x" ] ; then
- CASSANDRA_LOG_DIR="$CASSANDRA_HOME/logs"
+ CASSANDRA_LOG_DIR="/var/log/cassandra/"
fi
#GC log path has to be defined here because it needs to access CASSANDRA_HOME