This is an automated email from the ASF dual-hosted git repository.

jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new 39e210324 [Hotfix] Fix typos (#4026)
39e210324 is described below

commit 39e21032447bf2f36e3cf7896fc8793f1b1f562b
Author: leosanqing <[email protected]>
AuthorDate: Mon Dec 29 17:00:53 2025 +0800

    [Hotfix] Fix typos (#4026)
---
 .../main/java/org/apache/amoro/formats/hudi/HudiHadoopCatalog.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/amoro-format-hudi/src/main/java/org/apache/amoro/formats/hudi/HudiHadoopCatalog.java
 
b/amoro-format-hudi/src/main/java/org/apache/amoro/formats/hudi/HudiHadoopCatalog.java
index 25d436a68..eae599a9f 100644
--- 
a/amoro-format-hudi/src/main/java/org/apache/amoro/formats/hudi/HudiHadoopCatalog.java
+++ 
b/amoro-format-hudi/src/main/java/org/apache/amoro/formats/hudi/HudiHadoopCatalog.java
@@ -63,8 +63,8 @@ public class HudiHadoopCatalog implements FormatCatalog {
         this.properties.containsKey(CatalogMetaProperties.KEY_WAREHOUSE),
         "Lack required property: {}",
         CatalogMetaProperties.KEY_WAREHOUSE);
-    String warehosue = 
this.properties.get(CatalogMetaProperties.KEY_WAREHOUSE);
-    this.warehouse = new Path(warehosue);
+    String warehouse = 
this.properties.get(CatalogMetaProperties.KEY_WAREHOUSE);
+    this.warehouse = new Path(warehouse);
   }
 
   @Override

Reply via email to