HBASE-3212 More testing of enable/disable uncovered base condition not in place; i.e. that only one enable/disable runs at a time

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1033304 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-11-10 00:19:44 +00:00
parent 3faee0a292
commit 46ab084208
1 changed files with 1 additions and 2 deletions

View File

@ -516,8 +516,7 @@ implements HMasterInterface, HMasterRegionInterface, MasterServices, Server {
// We depend on there being only one instance of this executor running // We depend on there being only one instance of this executor running
// at a time. To do concurrency, would need fencing of enable/disable of // at a time. To do concurrency, would need fencing of enable/disable of
// tables. // tables.
this.executorService.startExecutorService(ExecutorType.MASTER_TABLE_OPERATIONS, this.executorService.startExecutorService(ExecutorType.MASTER_TABLE_OPERATIONS, 1);
conf.getInt("hbase.master.executor.tableops.threads", 1));
// Put up info server. // Put up info server.
int port = this.conf.getInt("hbase.master.info.port", 60010); int port = this.conf.getInt("hbase.master.info.port", 60010);