This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 000b1ade1a7 [MINOR] Fix the wrong class parameter type for metadata
server reflection (#12425)
000b1ade1a7 is described below
commit 000b1ade1a76278ea1c201657d08f7f00b79262c
Author: dongsj <[email protected]>
AuthorDate: Thu Dec 5 12:16:08 2024 +0800
[MINOR] Fix the wrong class parameter type for metadata server reflection
(#12425)
---
.../java/org/apache/hudi/common/table/view/FileSystemViewManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/FileSystemViewManager.java
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/FileSystemViewManager.java
index d875168085c..66d63323076 100644
---
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/FileSystemViewManager.java
+++
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/FileSystemViewManager.java
@@ -196,7 +196,7 @@ public class FileSystemViewManager {
}
if (metaClient.getMetaserverConfig().isMetaserverEnabled()) {
return (HoodieTableFileSystemView)
ReflectionUtils.loadClass(HOODIE_METASERVER_FILE_SYSTEM_VIEW_CLASS,
- new Class<?>[]{HoodieTableMetaClient.class, HoodieTimeline.class,
HoodieMetadataConfig.class},
+ new Class<?>[]{HoodieTableMetaClient.class, HoodieTimeline.class,
HoodieMetaserverConfig.class},
metaClient, timeline, metaClient.getMetaserverConfig());
}
return new HoodieTableFileSystemView(metaClient, timeline);