HBASE-3269 HBase table truncate semantics seems broken as disable table is now async by default.

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1038467 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-11-24 04:04:30 +00:00
parent 272806891a
commit 8053c0f4b3
2 changed files with 3 additions and 1 deletions

View File

@ -708,6 +708,8 @@ Release 0.90.0 - Unreleased
HBASE-3249 Typing 'help shutdown' in the shell shouldn't shutdown the cluster
HBASE-3262 TestHMasterRPCException uses non-ephemeral port for master
HBASE-3272 Remove no longer used options
HBASE-3269 HBase table truncate semantics seems broken as "disable" table
is now async by default
IMPROVEMENTS

View File

@ -83,7 +83,7 @@ module Hbase
# Disables a table
def disable(table_name)
return unless enabled?(table_name)
@admin.disableTableAsync(table_name)
@admin.disableTable(table_name)
end
#----------------------------------------------------------------------------------------------