Updated Branches: refs/heads/1.6.0-SNAPSHOT f0ea80a11 -> 089366737
ACCUMUL-2054 error when a namespace does not exist Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/08936673 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/08936673 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/08936673 Branch: refs/heads/1.6.0-SNAPSHOT Commit: 0893667379d7f6844d58ad32e5e251c6dd7a6fc3 Parents: f0ea80a Author: Eric Newton <[email protected]> Authored: Thu Dec 19 16:32:30 2013 -0500 Committer: Eric Newton <[email protected]> Committed: Thu Dec 19 16:32:30 2013 -0500 ---------------------------------------------------------------------- .../apache/accumulo/test/randomwalk/concurrent/CreateTable.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/08936673/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/CreateTable.java ---------------------------------------------------------------------- diff --git a/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/CreateTable.java b/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/CreateTable.java index b65fbaa..5a695bc 100644 --- a/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/CreateTable.java +++ b/test/src/main/java/org/apache/accumulo/test/randomwalk/concurrent/CreateTable.java @@ -20,6 +20,7 @@ import java.util.List; import java.util.Properties; import java.util.Random; +import org.apache.accumulo.core.client.AccumuloSecurityException; import org.apache.accumulo.core.client.Connector; import org.apache.accumulo.core.client.TableExistsException; import org.apache.accumulo.test.randomwalk.State; @@ -45,6 +46,8 @@ public class CreateTable extends Test { log.debug("Create " + tableName + " failed, it exists"); } catch (IllegalArgumentException e) { log.debug("Create: " + e.toString()); + } catch (AccumuloSecurityException e) { + log.debug("Could not create table: " + e); } } }
