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:
parent
272806891a
commit
8053c0f4b3
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
#----------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue