yihua opened a new pull request, #18342: URL: https://github.com/apache/hudi/pull/18342
## Summary - The bare `case e =>` in `AvroConversionUtils.scala:70` catches all Throwables implicitly, triggering a Scala compiler warning - Make the intent explicit with `case e: Throwable =>` to silence the warning without changing behavior ## Test plan - [x] Verified `mvn compile` succeeds and the "catches all Throwables" warning is gone 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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]
