You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ve...@apache.org on 2015/04/30 17:04:00 UTC

incubator-ranger git commit: RANGER-439 : Fix usersync installation failure

Repository: incubator-ranger
Updated Branches:
  refs/heads/master e57a5480d -> 36a6b961d


RANGER-439 : Fix usersync installation failure

Signed-off-by: Velmurugan Periasamy <ve...@apache.org>


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

Branch: refs/heads/master
Commit: 36a6b961d9ceb066ba67a193404bd402fe102110
Parents: e57a548
Author: Gautam Borad <gb...@gmail.com>
Authored: Thu Apr 30 20:12:40 2015 +0530
Committer: Velmurugan Periasamy <ve...@apache.org>
Committed: Thu Apr 30 11:03:39 2015 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/36a6b961/unixauthservice/scripts/setup.py
----------------------------------------------------------------------
diff --git a/unixauthservice/scripts/setup.py b/unixauthservice/scripts/setup.py
index 9a9e525..0094e32 100755
--- a/unixauthservice/scripts/setup.py
+++ b/unixauthservice/scripts/setup.py
@@ -144,7 +144,7 @@ def writeXMLUsingProperties(xmlTemplateFileName,prop,xmlOutputFileName):
     for config in root.findall('property'):
         name = config.find('name').text
         if (name in prop.keys()):
-            config.find('value').text = prop[name]
+            config.find('value').text = str(prop[name])
         #else:
         #    print "ERROR: key not found: %s" % (name)
     if isfile(xmlOutputFileName):