This is an automated email from the ASF dual-hosted git repository. yong pushed a commit to branch branch-4.14 in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit 9158bb910f2ecfb41dbcb091d7f23a9832ef16c9 Author: Yong Zhang <[email protected]> AuthorDate: Tue Oct 26 09:13:11 2021 +0800 Fix the compilation issue introduced by #2802 --- --- .../org/apache/bookkeeper/replication/AuditorPeriodicCheckTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookkeeper-server/src/test/java/org/apache/bookkeeper/replication/AuditorPeriodicCheckTest.java b/bookkeeper-server/src/test/java/org/apache/bookkeeper/replication/AuditorPeriodicCheckTest.java index d60451d..a977d20 100644 --- a/bookkeeper-server/src/test/java/org/apache/bookkeeper/replication/AuditorPeriodicCheckTest.java +++ b/bookkeeper-server/src/test/java/org/apache/bookkeeper/replication/AuditorPeriodicCheckTest.java @@ -397,10 +397,10 @@ public class AuditorPeriodicCheckTest extends BookKeeperClusterTestCase { } // create auditor and call `checkAllLedgers` - ServerConfiguration configuration = confByIndex(0); + ServerConfiguration configuration = bsConfs.get(0); configuration.setAuditorMaxNumberOfConcurrentOpenLedgerOperations(10); - Auditor auditor1 = new Auditor(BookieImpl.getBookieId(configuration).toString(), + Auditor auditor1 = new Auditor(Bookie.getBookieId(configuration).toString(), configuration, NullStatsLogger.INSTANCE); Auditor auditor = Mockito.spy(auditor1);
