You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by rm...@apache.org on 2014/10/06 08:54:26 UTC

[1/2] git commit: Argus-100

Repository: incubator-argus
Updated Branches:
  refs/heads/master 7a9ee4d12 -> 32dbf7173


Argus-100

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

Branch: refs/heads/master
Commit: cc386acec9f1ff0cf9cf4b2ff589b1b053927cb2
Parents: 01fb970
Author: rmani <rm...@hortonworks.com>
Authored: Sun Oct 5 23:53:29 2014 -0700
Committer: rmani <rm...@hortonworks.com>
Committed: Sun Oct 5 23:53:29 2014 -0700

----------------------------------------------------------------------
 .../src/main/java/com/xasecure/pdp/config/PolicyRefresher.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-argus/blob/cc386ace/agents-impl/src/main/java/com/xasecure/pdp/config/PolicyRefresher.java
----------------------------------------------------------------------
diff --git a/agents-impl/src/main/java/com/xasecure/pdp/config/PolicyRefresher.java b/agents-impl/src/main/java/com/xasecure/pdp/config/PolicyRefresher.java
index 60b0074..9115ab3 100644
--- a/agents-impl/src/main/java/com/xasecure/pdp/config/PolicyRefresher.java
+++ b/agents-impl/src/main/java/com/xasecure/pdp/config/PolicyRefresher.java
@@ -188,7 +188,7 @@ public class PolicyRefresher  {
 				writer.println(policyAsJson) ;
 			}
 			catch(IOException ioe) {
-				LOG.error("Unable to save policy into file: [" + saveFile.getAbsolutePath() + "]", ioe);
+				LOG.warn("Unable to save policy into file: [" + saveFile.getAbsolutePath() + "]");
 			}
 			finally {
 				if (writer != null) {
@@ -221,7 +221,7 @@ public class PolicyRefresher  {
 				
 			}
 			catch(IOException ioe){
-				LOG.error("Unable to save the policy into Last Stored Policy File [" + lastSaveFile.getAbsolutePath() + "]", ioe );
+				LOG.warn("Unable to save the policy into Last Stored Policy File [" + lastSaveFile.getAbsolutePath() + "]");
 			}
 		    finally {
 		    	 //make the policy file cache to be 600 permission when it gets created and updated


[2/2] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-argus.git

Posted by rm...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-argus.git

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

Branch: refs/heads/master
Commit: 32dbf7173d7c474cd5a2fa47c4cb0055df87f347
Parents: cc386ac 7a9ee4d
Author: rmani <rm...@hortonworks.com>
Authored: Sun Oct 5 23:54:01 2014 -0700
Committer: rmani <rm...@hortonworks.com>
Committed: Sun Oct 5 23:54:01 2014 -0700

----------------------------------------------------------------------
 .../xasecure/audit/provider/DebugTracer.java    |  10 +
 .../audit/provider/LocalFileLogBuffer.java      |  88 +++++----
 .../xasecure/audit/provider/Log4jTracer.java    |  35 ++++
 .../audit/provider/hdfs/HdfsAuditProvider.java  |  15 +-
 .../audit/provider/hdfs/HdfsLogDestination.java |  66 ++++---
 .../com/xasecure/hadoop/client/HadoopFS.java    |  69 ++++++-
 .../hadoop/client/config/BaseClient.java        |  52 ++++-
 .../client/exceptions/HadoopException.java      |  13 ++
 .../com/xasecure/hbase/client/HBaseClient.java  | 195 +++++++++++++++++--
 .../com/xasecure/hive/client/HiveClient.java    | 176 ++++++++++++++---
 .../com/xasecure/knox/client/KnoxClient.java    | 186 +++++++++++++++++-
 .../main/java/com/xasecure/biz/AssetMgr.java    | 135 +++++++++----
 .../webapp/scripts/views/asset/AssetCreate.js   |  32 ++-
 13 files changed, 904 insertions(+), 168 deletions(-)
----------------------------------------------------------------------