You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by vi...@apache.org on 2013/12/18 21:49:30 UTC

[1/2] git commit: ACCUMULO-2025 - splitting the tests caused duplicate tables being used. They now use unique tables and namespaces

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT 3ec25dbe5 -> f228caff4


ACCUMULO-2025 - splitting the tests caused duplicate tables being used. They now use unique tables and namespaces


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: 3743312d6369ff52691fdca03cb4338972823255
Parents: 3ec25db
Author: John Vines <vi...@apache.org>
Authored: Wed Dec 18 15:48:26 2013 -0500
Committer: John Vines <vi...@apache.org>
Committed: Wed Dec 18 15:48:26 2013 -0500

----------------------------------------------------------------------
 test/src/test/java/org/apache/accumulo/test/NamespacesIT.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/3743312d/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java
index d00334a..c4adb64 100644
--- a/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/NamespacesIT.java
@@ -316,7 +316,7 @@ public class NamespacesIT extends SimpleMacIT {
   public void testNamespaceConstraints() throws Exception {
     Connector c = getConnector();
 
-    String namespace = "iterator";
+    String namespace = "constraint";
     String tableName = namespace + ".table";
     String iter = "thing";
 


[2/2] git commit: ACCUMULO-1980 No longer tries to use master to stop tserver if no masters

Posted by vi...@apache.org.
ACCUMULO-1980 No longer tries to use master to stop tserver if no masters


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: f228caff46816939b95f101942082a9da0277dce
Parents: 3743312
Author: John Vines <vi...@apache.org>
Authored: Wed Dec 18 15:48:52 2013 -0500
Committer: John Vines <vi...@apache.org>
Committed: Wed Dec 18 15:48:52 2013 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/server/util/Admin.java     | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/f228caff/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
----------------------------------------------------------------------
diff --git a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
index 698259b..1e1bc79 100644
--- a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
+++ b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
@@ -299,6 +299,10 @@ public class Admin {
 
   private static void stopTabletServer(final Instance instance, final Credentials creds, List<String> servers, final boolean force) throws AccumuloException,
       AccumuloSecurityException {
+    if (instance.getMasterLocations().size() == 0) {
+      log.info("No masters running. Not attempting safe unload of tserver.");
+      return;
+    }
     for (String server : servers) {
       HostAndPort address = AddressUtil.parseAddress(server, ServerConfiguration.getDefaultConfiguration().getPort(Property.TSERV_CLIENTPORT));
       final String finalServer = address.toString();