linliu-code commented on code in PR #13807:
URL: https://github.com/apache/hudi/pull/13807#discussion_r2310295050


##########
hudi-common/src/main/java/org/apache/hudi/storage/HoodieStorageUtils.java:
##########
@@ -30,6 +30,17 @@ public static HoodieStorage 
getStorage(StorageConfiguration<?> conf) {
     return getStorage(DEFAULT_URI, conf);
   }
 
+  public static HoodieStorage getStorage() {
+    try {
+      String defaultStorageClass = 
"org.apache.hudi.storage.hadoop.HoodieHadoopStorage";
+      return (HoodieStorage) ReflectionUtils.loadClass(
+          defaultStorageClass,
+          new Class<?>[] {Boolean.class}, false);

Review Comment:
   true or false?



-- 
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