Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrr888 committed Jul 2, 2024
1 parent d704555 commit 176b9c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1000,9 +1000,9 @@ private static long printDanglingFateOperations(ServerContext context,
}
};

UserFateStore<?> ufs = new UserFateStore<>(context);
UserFateStore<?> ufs = new UserFateStore<>(context, null, null);
MetaFateStore<?> mfs = new MetaFateStore<>(context.getZooKeeperRoot() + Constants.ZFATE,
context.getZooReaderWriter());
context.getZooReaderWriter(), null, null);
LoadingCache<FateId,ReadOnlyFateStore.TStatus> fateStatusCache = Caffeine.newBuilder()
.maximumSize(100_000).expireAfterWrite(10, TimeUnit.SECONDS).build(fateId -> {
if (fateId.getType() == FateInstanceType.META) {
Expand Down

0 comments on commit 176b9c3

Please sign in to comment.