Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6FB2118892 for ; Sat, 31 Oct 2015 17:07:28 +0000 (UTC) Received: (qmail 77057 invoked by uid 500); 31 Oct 2015 17:07:28 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 76993 invoked by uid 500); 31 Oct 2015 17:07:28 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 76972 invoked by uid 99); 31 Oct 2015 17:07:28 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Oct 2015 17:07:28 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id C90A12C1F57 for ; Sat, 31 Oct 2015 17:07:27 +0000 (UTC) Date: Sat, 31 Oct 2015 17:07:27 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-14733) Minor typo in alter_namespace.rb MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-14733?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14984052#comment-14984052 ] Hudson commented on HBASE-14733: -------------------------------- FAILURE: Integrated in HBase-1.0 #1105 (See [https://builds.apache.org/job/HBase-1.0/1105/]) HBASE-14733 Minor typo in alter_namespace.rb (enis: rev ed25a475aa5178d07b46eb24a5fd6e6ab78329d9) * hbase-shell/src/main/ruby/shell/commands/create_namespace.rb * hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb > Minor typo in alter_namespace.rb > -------------------------------- > > Key: HBASE-14733 > URL: https://issues.apache.org/jira/browse/HBASE-14733 > Project: HBase > Issue Type: Bug > Reporter: Enis Soztutar > Assignee: Enis Soztutar > Priority: Trivial > Fix For: 2.0.0, 1.2.0, 1.3.0, 1.0.3, 1.1.3, 0.98.16 > > Attachments: hbase-14733.patch > > > {code} > diff --git hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb > index 760bbf7..a16e10d 100644 > --- hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb > +++ hbase-shell/src/main/ruby/shell/commands/alter_namespace.rb > @@ -26,11 +26,11 @@ Alter namespace properties. > > To add/modify a property: > > - hbase> alter_namespace 'ns1', {METHOD => 'set', 'PROERTY_NAME' => 'PROPERTY_VALUE'} > + hbase> alter_namespace 'ns1', {METHOD => 'set', 'PROPERTY_NAME' => 'PROPERTY_VALUE'} > > To delete a property: > > - hbase> alter_namespace 'ns1', {METHOD => 'unset', NAME=>'PROERTY_NAME'} > + hbase> alter_namespace 'ns1', {METHOD => 'unset', NAME=>'PROPERTY_NAME'} > EOF > end > > diff --git hbase-shell/src/main/ruby/shell/commands/create_namespace.rb hbase-shell/src/main/ruby/shell/commands/create_namespace.rb > index 3259eb6..adb6897 100644 > --- hbase-shell/src/main/ruby/shell/commands/create_namespace.rb > +++ hbase-shell/src/main/ruby/shell/commands/create_namespace.rb > @@ -27,7 +27,7 @@ and optionally a dictionary of namespace configuration. > Examples: > > hbase> create_namespace 'ns1' > - hbase> create_namespace 'ns1', {'PROERTY_NAME'=>'PROPERTY_VALUE'} > + hbase> create_namespace 'ns1', {'PROPERTY_NAME'=>'PROPERTY_VALUE'} > EOF > end > > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)