This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch release-1.2.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit fcca5584da0af5a9db34be85b01c2483df757756 Author: Peter Huang <[email protected]> AuthorDate: Thu May 14 18:11:42 2026 -0700 fix(flink): shade codehale in flink bundle (#18730) --- packaging/hudi-flink-bundle/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packaging/hudi-flink-bundle/pom.xml b/packaging/hudi-flink-bundle/pom.xml index de8dda49d0c0..a1e7093aa3dd 100644 --- a/packaging/hudi-flink-bundle/pom.xml +++ b/packaging/hudi-flink-bundle/pom.xml @@ -192,6 +192,10 @@ <pattern>com.yammer.metrics.</pattern> <shadedPattern>${flink.bundle.shade.prefix}com.yammer.metrics.</shadedPattern> </relocation> + <relocation> + <pattern>com.codahale.metrics.</pattern> + <shadedPattern>org.apache.hudi.com.codahale.metrics.</shadedPattern> + </relocation> <relocation> <pattern>com.beust.jcommander.</pattern> <shadedPattern>${flink.bundle.shade.prefix}com.beust.jcommander.</shadedPattern>
