HBASE-9454 HBaseAdmin#unassign() has incorrect @param argument
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1520702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd8bb3e68a
commit
cf05666f03
|
@ -1690,9 +1690,9 @@ public class HBaseAdmin implements Abortable, Closeable {
|
|||
* @throws ZooKeeperConnectionException
|
||||
* @throws IOException
|
||||
*/
|
||||
public void unassign(final byte [] getRegionName, final boolean force)
|
||||
public void unassign(final byte [] regionName, final boolean force)
|
||||
throws MasterNotRunningException, ZooKeeperConnectionException, IOException {
|
||||
final byte[] toBeUnassigned = getRegionName(getRegionName);
|
||||
final byte[] toBeUnassigned = getRegionName(regionName);
|
||||
executeCallable(new MasterAdminCallable<Void>(getConnection()) {
|
||||
@Override
|
||||
public Void call() throws ServiceException {
|
||||
|
|
Loading…
Reference in New Issue