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 BD6CE11E8C for ; Thu, 24 Jul 2014 19:08:38 +0000 (UTC) Received: (qmail 48481 invoked by uid 500); 24 Jul 2014 19:08:38 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 48377 invoked by uid 500); 24 Jul 2014 19:08:38 -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 48206 invoked by uid 99); 24 Jul 2014 19:08:38 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jul 2014 19:08:38 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D51589B3408; Thu, 24 Jul 2014 19:08:37 +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: Thu, 24 Jul 2014 19:08:37 -0000 Message-Id: <05d3860610864c929423b48f17018c6b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/7] git commit: ACCUMULO-1832 fix typos Repository: accumulo Updated Branches: refs/heads/1.5.2-SNAPSHOT 1967a294e -> 87c609d77 refs/heads/1.6.1-SNAPSHOT 59426a029 -> e7c64d477 refs/heads/master 3ab214822 -> 78f1c1429 ACCUMULO-1832 fix typos Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/59426a02 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/59426a02 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/59426a02 Branch: refs/heads/master Commit: 59426a029ca6b6ad707d95d3bced1aaa0435baa5 Parents: fc4e983 Author: Eric C. Newton Authored: Thu Jul 24 11:22:08 2014 -0400 Committer: Eric C. Newton Committed: Thu Jul 24 11:22:48 2014 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/59426a02/core/src/main/java/org/apache/accumulo/core/conf/Property.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 095b25d..8c9a326 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -126,9 +126,9 @@ public enum Property { + "encoding. For example replace commas with %2C."), INSTANCE_VOLUMES_REPLACEMENTS("instance.volumes.replacements", "", PropertyType.STRING, "Since accumulo stores absolute URIs changing the location of a namenode could prevent Accumulo from starting. The property helps deal with that " - + "situation. Provide a comma seperated list of uri replacement pairs here if a namenode location changes. Each pair shold be separated with a " - + "space. For example, if hdfs://nn1 was repalced with hdfs://nnA and hdfs://nn2 was replaced with hdfs://nnB, then set this property to " - + "'hdfs://nn1 hdfs://nnA,hdfs://nn2 hdfs://nnB'Replacements must be configured for use. To see which volumes are currently in use, run " + + "situation. Provide a comma separated list of uri replacement pairs here if a namenode location changes. Each pair shold be separated with a " + + "space. For example, if hdfs://nn1 was replaced with hdfs://nnA and hdfs://nn2 was replaced with hdfs://nnB, then set this property to " + + "'hdfs://nn1 hdfs://nnA,hdfs://nn2 hdfs://nnB' Replacements must be configured for use. To see which volumes are currently in use, run " + "'accumulo admin volumes -l'. To use a comma or other reserved characters in a URI use standard URI hex encoding. For example replace commas with " + "%2C."), INSTANCE_SECURITY_AUTHENTICATOR("instance.security.authenticator", "org.apache.accumulo.server.security.handler.ZKAuthenticator", PropertyType.CLASSNAME,