https://github.com/voldemort/voldemort
Revision 49beabbc94755af04777a1d2e8ba2c3f7d31a6c9 authored by Felix GV on 22 October 2015, 21:25:39 UTC, committed by Felix GV on 22 October 2015, 21:25:39 UTC
There are cases (i.e.: emergency situations) where we may want to chmod -w a data directory and recreating the symlinks systematically then prevents the server from being able to start up. This change inspects the symlink which is already present and avoids recreating it if it's already pointing at the right destination.
1 parent d780f55
Raw File
Tip revision: 49beabbc94755af04777a1d2e8ba2c3f7d31a6c9 authored by Felix GV on 22 October 2015, 21:25:39 UTC
Read-Only server now avoids needlessly recreating symlinks.
Tip revision: 49beabb
gradle.properties
## Main source
src.dir=src
java.dir=src/java
python.dir=clients/python
python.proto.dir=clients/python/voldemort/protocol
protobuff.dir=src/proto
private.lib.dir=private-lib
classes.dir=dist/classes
resources.dir=dist/resources
commontestsrc.dir=test/common
unittestsrc.dir=test/unit
longtestsrc.dir=test/long
inttestsrc.dir=test/integration
testclasses.dir=dist/testclasses
testreport.dir=dist/junit-reports
testhtml.dir=dist/junit-reports/html
singletestreport.dir=dist/junit-single-reports
singletesthtml.dir=dist/junit-single-reports/html
longtestreport.dir=dist/junit-long-reports
longtesthtml.dir=dist/junit-long-reports/html

## Contrib
contrib.root.dir=contrib
contrib.classes.dir=dist/contrib-classes
contribtestreport.dir=dist/contrib-junit-reports
contribtesthtml.dir=dist/contrib-junit-reports/html
contrib.testclasses.dir=dist/contribtestclasses

## Other dirs
docs.dir=docs
javadoc.dir=docs/javadoc
dist.dir=dist
war.dir=war

## Tomcat
tomcat.manager.url=http://localhost:8080/manager
tomcat.manager.username=tomcat
tomcat.manager.password=tomcat
tomcat.context=/voldemort

## Java version
javac.version=1.6

## Release
curr.release=1.10.0
back to top