You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "John Vines (JIRA)" <ji...@apache.org> on 2014/07/09 22:03:05 UTC

[jira] [Created] (ACCUMULO-2985) MAC Can't start in 1.6.1-SNAPSHOT

John Vines created ACCUMULO-2985:
------------------------------------

             Summary: MAC Can't start in 1.6.1-SNAPSHOT
                 Key: ACCUMULO-2985
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-2985
             Project: Accumulo
          Issue Type: Bug
          Components: mini
            Reporter: John Vines
            Priority: Blocker
             Fix For: 1.6.1


Using the following code to do some work-
{code}public class TestMACWithRealInstance {
  public static void main(String args[]) throws IOException, AccumuloException, AccumuloSecurityException, TableExistsException, InterruptedException {
    MiniAccumuloConfig macConfig = new MiniAccumuloConfig(new File("/tmp/mac"), "secret");
    macConfig.setNumTservers(2);
    MiniAccumuloCluster mac = new MiniAccumuloCluster(macConfig);
    mac.start();
    mac.getConnector("root", "secret").tableOperations().create("macCreated");
    mac.stop();
  }
}
{code}

It works fine against 1.6.0, but it seems broken against 01da4f4a8b14a125d3a2e29ef98dd044ab9ec75f with it waiting for ZK to start in perpetuity.



--
This message was sent by Atlassian JIRA
(v6.2#6252)