You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by vi...@apache.org on 2014/10/25 21:00:03 UTC

[1/2] git commit: ACCUMULO-3237 stricter thrift version checking

Repository: accumulo
Updated Branches:
  refs/heads/master 59333e3cb -> 984c6b86c


ACCUMULO-3237 stricter thrift version checking


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/87fbb4b8
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/87fbb4b8
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/87fbb4b8

Branch: refs/heads/master
Commit: 87fbb4b8193b0c487e872154cb8722ef87082c7a
Parents: 5cb976b
Author: John Vines <vi...@apache.org>
Authored: Sat Oct 25 14:56:29 2014 -0400
Committer: John Vines <vi...@apache.org>
Committed: Sat Oct 25 14:58:30 2014 -0400

----------------------------------------------------------------------
 core/src/main/scripts/generate-thrift.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/87fbb4b8/core/src/main/scripts/generate-thrift.sh
----------------------------------------------------------------------
diff --git a/core/src/main/scripts/generate-thrift.sh b/core/src/main/scripts/generate-thrift.sh
index 5a5d69f..ee5bb8e 100755
--- a/core/src/main/scripts/generate-thrift.sh
+++ b/core/src/main/scripts/generate-thrift.sh
@@ -26,7 +26,7 @@
 #   INCLUDED_MODULES should be an array that includes other Maven modules with src/main/thrift directories
 #   Use INCLUDED_MODULES=(-) in calling scripts that require no other modules
 # ========================================================================================================================
-[ -z $REQUIRED_THRIFT_VERSION ] && REQUIRED_THRIFT_VERSION='0.9'
+[ -z $REQUIRED_THRIFT_VERSION ] && REQUIRED_THRIFT_VERSION='0.9.1'
 [ -z $INCLUDED_MODULES ]        && INCLUDED_MODULES=(../trace)
 [ -z $BASE_OUTPUT_PACKAGE ]     && BASE_OUTPUT_PACKAGE='org.apache.accumulo.core'
 [ -z $PACKAGES_TO_GENERATE ]    && PACKAGES_TO_GENERATE=(gc master tabletserver security client.impl data)


[2/2] git commit: Merge branch '1.6'

Posted by vi...@apache.org.
Merge branch '1.6'

Conflicts:
	core/src/main/scripts/generate-thrift.sh


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/984c6b86
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/984c6b86
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/984c6b86

Branch: refs/heads/master
Commit: 984c6b86c5b8e546248ec10e47d98ddf0f91f115
Parents: 59333e3 87fbb4b
Author: John Vines <vi...@apache.org>
Authored: Sat Oct 25 14:59:54 2014 -0400
Committer: John Vines <vi...@apache.org>
Committed: Sat Oct 25 14:59:54 2014 -0400

----------------------------------------------------------------------
 core/src/main/scripts/generate-thrift.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/984c6b86/core/src/main/scripts/generate-thrift.sh
----------------------------------------------------------------------
diff --cc core/src/main/scripts/generate-thrift.sh
index 9fe743d,ee5bb8e..8c60cf3
--- a/core/src/main/scripts/generate-thrift.sh
+++ b/core/src/main/scripts/generate-thrift.sh
@@@ -26,13 -26,13 +26,13 @@@
  #   INCLUDED_MODULES should be an array that includes other Maven modules with src/main/thrift directories
  #   Use INCLUDED_MODULES=(-) in calling scripts that require no other modules
  # ========================================================================================================================
- [[ -z $REQUIRED_THRIFT_VERSION ]] && REQUIRED_THRIFT_VERSION='0.9'
 -[ -z $REQUIRED_THRIFT_VERSION ] && REQUIRED_THRIFT_VERSION='0.9.1'
 -[ -z $INCLUDED_MODULES ]        && INCLUDED_MODULES=(../trace)
 -[ -z $BASE_OUTPUT_PACKAGE ]     && BASE_OUTPUT_PACKAGE='org.apache.accumulo.core'
 -[ -z $PACKAGES_TO_GENERATE ]    && PACKAGES_TO_GENERATE=(gc master tabletserver security client.impl data)
 -[ -z $BUILD_DIR ]               && BUILD_DIR='target'
 -[ -z $LANGUAGES_TO_GENERATE ]   && LANGUAGES_TO_GENERATE=(java)
 -[ -z $FINAL_DIR ]               && FINAL_DIR='src/main'
++[[ -z $REQUIRED_THRIFT_VERSION ]] && REQUIRED_THRIFT_VERSION='0.9.1'
 +[[ -z $INCLUDED_MODULES ]]        && INCLUDED_MODULES=(../trace)
 +[[ -z $BASE_OUTPUT_PACKAGE ]]     && BASE_OUTPUT_PACKAGE='org.apache.accumulo.core'
 +[[ -z $PACKAGES_TO_GENERATE ]]    && PACKAGES_TO_GENERATE=(gc master tabletserver security client.impl data replication)
 +[[ -z $BUILD_DIR ]]               && BUILD_DIR='target'
 +[[ -z $LANGUAGES_TO_GENERATE ]]   && LANGUAGES_TO_GENERATE=(java)
 +[[ -z $FINAL_DIR ]]               && FINAL_DIR='src/main'
  # ========================================================================================================================
  
  fail() {