Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9BCBD10643 for ; Tue, 29 Apr 2014 03:27:05 +0000 (UTC) Received: (qmail 24192 invoked by uid 500); 29 Apr 2014 03:27:04 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 24128 invoked by uid 500); 29 Apr 2014 03:27:04 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 24109 invoked by uid 99); 29 Apr 2014 03:27:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Apr 2014 03:27:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 82A159947AA; Tue, 29 Apr 2014 03:27:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Tue, 29 Apr 2014 03:27:03 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: ACCUMULO-2752 Adding accidentally omitted getZooKeeperPort method Repository: accumulo Updated Branches: refs/heads/1.6.0-SNAPSHOT 1f7dd2d53 -> f5bcee7ae refs/heads/master b48b13acb -> fb7534b4d ACCUMULO-2752 Adding accidentally omitted getZooKeeperPort method Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f5bcee7a Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f5bcee7a Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f5bcee7a Branch: refs/heads/1.6.0-SNAPSHOT Commit: f5bcee7aeb2d94125324fb14892855fbd6c64473 Parents: 1f7dd2d Author: Josh Elser Authored: Mon Apr 28 23:12:30 2014 -0400 Committer: Josh Elser Committed: Mon Apr 28 23:24:57 2014 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/cluster/AccumuloConfig.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/f5bcee7a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloConfig.java ---------------------------------------------------------------------- diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloConfig.java b/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloConfig.java index 8138615..eb373c7 100644 --- a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloConfig.java +++ b/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloConfig.java @@ -91,6 +91,11 @@ public interface AccumuloConfig { public Map getSiteConfig(); /** + * @return The configured ZooKeeper port + */ + public int getZooKeeperPort(); + + /** * @return name of configured instance */ public String getInstanceName();