This is an automated email from the ASF dual-hosted git repository.
arvindsh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-uno.git
The following commit(s) were added to refs/heads/master by this push:
new 20ead46 Fix #235 skip checksum check for snapshot version (#236)
20ead46 is described below
commit 20ead4630636d2835feccc0e2d5d19f49c634593
Author: Mandar Inamdar <[email protected]>
AuthorDate: Tue Nov 19 18:28:25 2019 -0800
Fix #235 skip checksum check for snapshot version (#236)
Allows Uno to start Accumulo for SNAPSHOT builds
---
bin/impl/load-env.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/impl/load-env.sh b/bin/impl/load-env.sh
index d465b5c..45c5955 100755
--- a/bin/impl/load-env.sh
+++ b/bin/impl/load-env.sh
@@ -139,7 +139,7 @@ if [[ -z "$ZOOKEEPER_HASH" ]]; then
echo "ZOOKEEPER_HASH is not set. Set it for your version in 'conf/checksums'
or uno.conf"
exit 1
fi
-if [[ -z "$ACCUMULO_HASH" ]]; then
+if [[ -z "$ACCUMULO_HASH" && "$ACCUMULO_VERSION" != *"SNAPSHOT"* ]]; then
echo "ACCUMULO_HASH is not set. Set it for your version in 'conf/checksums'
or uno.conf"
exit 1
fi