https://github.com/voldemort/voldemort
Revision 10d94a33c2b817991aa0a951862c232c983c33e3 authored by Arunachalam Thirupathi on 27 October 2015, 21:46:30 UTC, committed by Felix GV on 27 October 2015, 22:03:37 UTC
MessageDigest.digest() is read once, after it is read
the contents of the digest are reset.

Without knowing this, now started outputting checksum to stats file
which broke the normal flow.

Passing Around MessageDigest is dangerous because of this, so modified
the method to return byte arrays which are then passed around.
1 parent f83442d
Raw File
Tip revision: 10d94a33c2b817991aa0a951862c232c983c33e3 authored by Arunachalam Thirupathi on 27 October 2015, 21:46:30 UTC
CopyStats Regression
Tip revision: 10d94a3
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