HBASE-18102 (addendum fixing shell tests) - Purge close_region command that allows by-pass of Master
Change-Id: I753f20d50954969ee473f6a016d5c5f9ff4fd631
This commit is contained in:
parent
71151eb0e9
commit
504a1f14e3
|
@ -334,12 +334,15 @@ module Hbase
|
|||
shutdown
|
||||
end
|
||||
|
||||
define_test "unassign should allow encoded & non-encoded region names" do
|
||||
define_test "unassign should allow encoded region names" do
|
||||
region = command(:locate_region, @test_name, '')
|
||||
regionName = region.getRegionInfo().getRegionNameAsString()
|
||||
encodedRegionName = region.getRegionInfo().getEncodedName()
|
||||
|
||||
command(:unassign, regionName, true)
|
||||
end
|
||||
|
||||
define_test "unassign should allow non-encoded region names" do
|
||||
region = command(:locate_region, @test_name, '')
|
||||
encodedRegionName = region.getRegionInfo().getEncodedName()
|
||||
command(:unassign, encodedRegionName, true)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue