Skip to content

Commit

Permalink
A empty implement in EtcdLedgerManagerFactory to let the project can …
Browse files Browse the repository at this point in the history
…compile (#2845)

(cherry picked from commit b1d5e14)
  • Loading branch information
ZhangJian He authored and eolivelli committed Oct 25, 2021
1 parent c01ed32 commit 5924d91
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import org.apache.bookkeeper.common.net.ServiceURI;
import org.apache.bookkeeper.conf.AbstractConfiguration;
import org.apache.bookkeeper.meta.LayoutManager;
import org.apache.bookkeeper.meta.LedgerAuditorManager;
import org.apache.bookkeeper.meta.LedgerIdGenerator;
import org.apache.bookkeeper.meta.LedgerManager;
import org.apache.bookkeeper.meta.LedgerManagerFactory;
Expand Down Expand Up @@ -91,6 +92,11 @@ public LedgerUnderreplicationManager newLedgerUnderreplicationManager()
throw new UnsupportedOperationException();
}

@Override
public LedgerAuditorManager newLedgerAuditorManager() throws IOException, InterruptedException {
throw new UnsupportedOperationException();
}

@Override
public void format(AbstractConfiguration<?> conf, LayoutManager lm)
throws InterruptedException, KeeperException, IOException {
Expand Down

0 comments on commit 5924d91

Please sign in to comment.