You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ma...@apache.org on 2016/03/08 23:37:58 UTC

incubator-ranger git commit: RANGER-807: fix for incorrect package name in setup.py for class TagAdminRESTSink

Repository: incubator-ranger
Updated Branches:
  refs/heads/master 8f1ac35a0 -> a1977b6af


RANGER-807: fix for incorrect package name in setup.py for class TagAdminRESTSink


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

Branch: refs/heads/master
Commit: a1977b6afc45367c35052d07d5ea1923dc8e6504
Parents: 8f1ac35
Author: Madhan Neethiraj <ma...@apache.org>
Authored: Tue Mar 8 14:34:43 2016 -0800
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Tue Mar 8 14:34:43 2016 -0800

----------------------------------------------------------------------
 tagsync/scripts/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/a1977b6a/tagsync/scripts/setup.py
----------------------------------------------------------------------
diff --git a/tagsync/scripts/setup.py b/tagsync/scripts/setup.py
index c100f73..6d28cd2 100755
--- a/tagsync/scripts/setup.py
+++ b/tagsync/scripts/setup.py
@@ -199,7 +199,7 @@ def convertInstallPropsToXML(props):
 		else:
 			print "Direct Key not found:%s" % (k)
 
-	ret['ranger.tagsync.sink.impl.class'] = 'org.apache.ranger.sink.policymgr.TagAdminRESTSink'
+	ret['ranger.tagsync.sink.impl.class'] = 'org.apache.ranger.tagsync.sink.tagadmin.TagAdminRESTSink'
 
 	if (TAG_SOURCE_KEY in ret):
 		ret['ranger.tagsync.source.impl.class'] = ret[TAG_SOURCE_KEY]