AmandeepSingh285 commented on code in PR #3673:
URL: https://github.com/apache/celeborn/pull/3673#discussion_r3213457043


##########
worker/src/test/java/org/apache/celeborn/service/deploy/worker/shuffledb/DBProviderSuiteJ.java:
##########
@@ -66,10 +68,12 @@ private void testCheckVersionFailed(DBBackend dbBackend, 
String namePrefix) thro
             : new File(dbDir.getPath(), String.format("%s-%s", namePrefix, 
UUID.randomUUID()));
     try {
       StoreVersion v1 = new StoreVersion(1, 0);
-      DBProvider.initDB(dbBackend, dbFile, v1).close();
+      DBProvider.initDB(dbBackend, dbFile, v1, new WorkerSource(new 
CelebornConf())).close();
       StoreVersion v2 = new StoreVersion(2, 0);
       IOException ioe =
-          assertThrows(IOException.class, () -> DBProvider.initDB(dbBackend, 
dbFile, v2));
+          assertThrows(
+              IOException.class,
+              () -> DBProvider.initDB(dbBackend, dbFile, v2, new 
WorkerSource(new CelebornConf())));

Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to