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 fbeb93d353e4 fix: Remove trailing colon from incomplete error message
in HoodieTableMetadataUtil (#18233)
fbeb93d353e4 is described below
commit fbeb93d353e4fb83ee1346056065cc2bdf5a630e
Author: Xinli Shang <[email protected]>
AuthorDate: Sun Feb 22 19:44:11 2026 -0800
fix: Remove trailing colon from incomplete error message in
HoodieTableMetadataUtil (#18233)
Co-authored-by: Xinli Shang <[email protected]>
---
.../src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java
index 2beb626fe9aa..bfa0c803fe64 100644
---
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java
+++
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadataUtil.java
@@ -2256,7 +2256,7 @@ public class HoodieTableMetadataUtil {
log.debug("Metadata table partition {} not found at path {}",
partitionPath, metadataTablePartitionPath);
return null;
} catch (Exception e) {
- throw new HoodieMetadataException(String.format("Failed to check
existence of MDT partition %s at path %s: ", partitionPath,
metadataTablePartitionPath), e);
+ throw new HoodieMetadataException(String.format("Failed to check
existence of MDT partition %s at path %s", partitionPath,
metadataTablePartitionPath), e);
}
if (backup) {