HBASE-4849 TestCatalogTracker can fail if an existing zookeeper running

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1205093 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-11-22 17:31:05 +00:00
parent 8cc1870f6f
commit 2229f7e016
1 changed files with 2 additions and 2 deletions

View File

@ -97,8 +97,8 @@ public class TestCatalogTracker {
private CatalogTracker constructAndStartCatalogTracker(final HConnection c) private CatalogTracker constructAndStartCatalogTracker(final HConnection c)
throws IOException, InterruptedException { throws IOException, InterruptedException {
CatalogTracker ct = new CatalogTracker(this.watcher, null, c, CatalogTracker ct = new CatalogTracker(this.watcher, UTIL.getConfiguration(),
this.abortable, 0); c, this.abortable, 0);
ct.start(); ct.start();
return ct; return ct;
} }