Skip to content

Commit

Permalink
fix leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacheliu3 committed Oct 25, 2023
1 parent e604f92 commit 28ad411
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -468,14 +468,8 @@ private void spyUfs() {
.build());
MasterUfsManager manager = new MasterUfsManager();
manager.getRoot(); // add root mount
<<<<<<< HEAD
manager.mUnderFileSystemMap.put(new AbstractUfsManager.Key(new AlluxioURI("/")), mUfs);
||||||| parent of 4ff13c31ea (other changes to make dep injection happen)
manager.mUnderFileSystemMap.put(new AbstractUfsManager.Key(new AlluxioURI("/"), null), mUfs);
=======
manager.mUnderFileSystemMap.put(new AbstractUfsManager.Key(new AlluxioURI("/")), mUfs);
// manager.mUnderFileSystemMap.put(new AbstractUfsManager.Key(new AlluxioURI("/"), null), mUfs);
>>>>>>> 4ff13c31ea (other changes to make dep injection happen)
mMountTable = new MountTable(manager, rootMountInfo, Clock.systemUTC());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void before() throws IOException {
PagedDoraWorker worker = mock(PagedDoraWorker.class);
CacheManager cacheManager = mock(CacheManager.class);
mDoraUfsManager = mock(DoraUfsManager.class);
mManager = new DoraMetaManager(conf, worker, cacheManager, mDoraUfsManager);
mManager = new DoraMetaManager(conf, cacheManager, mDoraUfsManager);
}

@After
Expand Down

0 comments on commit 28ad411

Please sign in to comment.