You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/12/19 22:32:28 UTC

[1/2] git commit: ACCUMUL-2054 error when a namespace does not exist

Updated Branches:
  refs/heads/master cbeac8ebf -> 260b6bf9f


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/master
Commit: 0893667379d7f6844d58ad32e5e251c6dd7a6fc3
Parents: f0ea80a
Author: Eric Newton <er...@gmail.com>
Authored: Thu Dec 19 16:32:30 2013 -0500
Committer: Eric Newton <er...@gmail.com>
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);
     }
   }
 }


[2/2] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/260b6bf9
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/260b6bf9
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/260b6bf9

Branch: refs/heads/master
Commit: 260b6bf9f0b24cf1ec02aecd0c4a8c1144a5b7ca
Parents: cbeac8e 0893667
Author: Eric Newton <er...@gmail.com>
Authored: Thu Dec 19 16:32:37 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Thu Dec 19 16:32:37 2013 -0500

----------------------------------------------------------------------
 .../apache/accumulo/test/randomwalk/concurrent/CreateTable.java   | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------