[ 
https://issues.apache.org/jira/browse/HBASE-13049?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14337880#comment-14337880
 ] 

Hudson commented on HBASE-13049:
--------------------------------

FAILURE: Integrated in HBase-0.98-on-Hadoop-1.1 #831 (See 
[https://builds.apache.org/job/HBase-0.98-on-Hadoop-1.1/831/])
HBASE-13049 wal_roll ruby command doesn't work (apurtell: rev 
50b806b5ecb96ef563a7620e2f5288f54a1bc122)
* hbase-shell/src/main/ruby/hbase/admin.rb


> wal_roll ruby command doesn't work. 
> ------------------------------------
>
>                 Key: HBASE-13049
>                 URL: https://issues.apache.org/jira/browse/HBASE-13049
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 1.0.0, 2.0.0
>            Reporter: Bhupendra Kumar Jain
>            Assignee: Bhupendra Kumar Jain
>             Fix For: 2.0.0, 1.0.1, 1.1.0, 0.98.11
>
>         Attachments: 0001-HBASE-13049-wal_roll-ruby-command-doesn-t-work.patch
>
>
> On execution of wal_roll command in shell, error message gets displayed as 
> shown below
> hbase(main):005:0> wal_roll 'host-10-19-92-94,16201,1424081618286'
> *ERROR: cannot convert instance of class org.jruby.RubyString to class 
> org.apache.hadoop.hbase.ServerName*
> its because Admin Java api expecting a ServerName object but script passes 
> the ServerName as string. 
> currently script is as below
> {code}
> @admin.rollWALWriter(server_name)
> {code}
> It should be like 
> {code}
> @admin.rollWALWriter(ServerName.valueOf(server_name))
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to