ACCUMULO-2312 NPE fixed by 2316/2318, but making message better
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/b33fbf40 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/b33fbf40 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/b33fbf40 Branch: refs/heads/master Commit: b33fbf40d0b16ee59d74341e568fab4abb160017 Parents: 1d411fb Author: John Vines <vi...@apache.org> Authored: Mon Feb 3 18:38:32 2014 -0500 Committer: John Vines <vi...@apache.org> Committed: Mon Feb 3 18:38:32 2014 -0500 ---------------------------------------------------------------------- .../accumulo/test/randomwalk/concurrent/ChangePermissions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/b33fbf40/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/ChangePermissions.java ---------------------------------------------------------------------- diff --git a/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/ChangePermissions.java b/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/ChangePermissions.java index 63af95a..73e6175 100644 --- a/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/ChangePermissions.java +++ b/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/ChangePermissions.java @@ -68,7 +68,7 @@ public class ChangePermissions extends Test { if (cause != null && cause instanceof ThriftTableOperationException) { ThriftTableOperationException toe = (ThriftTableOperationException)cause.getCause(); if (toe.type == TableOperationExceptionType.NAMESPACE_NOTFOUND) { - log.debug("Unable to change user permissions: " + toe.getCause()); + log.debug("Unable to change user permissions: " + toe); return; } }