You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by co...@apache.org on 2017/02/06 14:44:55 UTC

ranger git commit: Minor fixes

Repository: ranger
Updated Branches:
  refs/heads/master 65bc6a51b -> 90619aa10


Minor fixes


Project: http://git-wip-us.apache.org/repos/asf/ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/90619aa1
Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/90619aa1
Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/90619aa1

Branch: refs/heads/master
Commit: 90619aa108f4bca13f0679a66e3d6aff45ea9215
Parents: 65bc6a5
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon Feb 6 14:44:27 2017 +0000
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon Feb 6 14:44:27 2017 +0000

----------------------------------------------------------------------
 tagsync/scripts/install.properties | 2 +-
 tagsync/scripts/setup.py           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/90619aa1/tagsync/scripts/install.properties
----------------------------------------------------------------------
diff --git a/tagsync/scripts/install.properties b/tagsync/scripts/install.properties
index a2c410a..e2e3ecd 100644
--- a/tagsync/scripts/install.properties
+++ b/tagsync/scripts/install.properties
@@ -14,7 +14,7 @@
 # limitations under the License.
 #
 #
-# This file provides a list of the deployment variables for the Ranger KMS Web Application
+# This file provides a list of the deployment variables for the Ranger Tagsync service
 #
 #
 #

http://git-wip-us.apache.org/repos/asf/ranger/blob/90619aa1/tagsync/scripts/setup.py
----------------------------------------------------------------------
diff --git a/tagsync/scripts/setup.py b/tagsync/scripts/setup.py
index e6150a7..29369f7 100755
--- a/tagsync/scripts/setup.py
+++ b/tagsync/scripts/setup.py
@@ -205,7 +205,7 @@ def updatePropertyInJCKSFile(jcksFileName,propName,value):
 	cmd = "java -cp './lib/*' %s create '%s' -value '%s' -provider jceks://file%s 2>&1" % (credUpdateClassName,propName,value,fn)
 	ret = os.system(cmd)
 	if (ret != 0):
-		print "ERROR: Unable update the JCKSFile(%s) for aliasName (%s)" % (fn,propName)
+		print "ERROR: Unable to update the JCKSFile (%s) for aliasName (%s)" % (fn,propName)
 		sys.exit(1)
 	return ret