HBASE-2287 TypeError in shell

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@922074 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-03-11 23:45:23 +00:00
parent 685d6093b0
commit f3f7b0622f
2 changed files with 3 additions and 2 deletions

View File

@ -234,7 +234,8 @@ Release 0.21.0 - Unreleased
HBASE-2308 Fix the bin/rename_table.rb script, make it work again
HBASE-2307 hbase-2295 changed hregion size, testheapsize broke... fix it
HBASE-2269 PerformanceEvaluation "--nomapred" may assign duplicate random
seed over multiple testing threads (Tatsuya Kawano via Stack)
seed over multiple testing threads (Tatsuya Kawano via Stack)
HBASE-2287 TypeError in shell (Alexey Kovyrin via Stack)
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -523,7 +523,7 @@ module HBase
# May have passed TIMESTAMP and row only; wants all columns from ts.
ts = args[TIMESTAMP]
if not ts
raise ArgumentError.new("Failed parse of " + args + ", " + args.class)
raise ArgumentError, "Failed parse of #{args}, #{args.class}"
end
get = Get.new(row.to_java_bytes, ts)
else