HBASE-3595 get_counter broken in shell

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1082691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-03-17 20:59:43 +00:00
parent c980f1d16a
commit 83772176b6
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ Release 0.91.0 - Unreleased
HBASE-3515 [replication] ReplicationSource can miss a log after RS comes
out of GC
HBASE-3665 tighten assertions for testBloomFilterSize
HBASE-3595 get_counter broken in shell
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -191,7 +191,7 @@ module Hbase
return nil if result.isEmpty
# Fetch cell value
cell = result.list.first
cell = result.list[0]
org.apache.hadoop.hbase.util.Bytes::toLong(cell.getValue)
end