Copilot commented on code in PR #6227: URL: https://github.com/apache/texera/pull/6227#discussion_r3540267901
########## amber/build.sbt: ########## @@ -158,7 +158,7 @@ val luceneDependencies = Seq( ///////////////////////////////////////////////////////////////////////////// // Hadoop related -val hadoopVersion = "3.4.3" +val hadoopVersion = "3.5.0" Review Comment: This bumps Hadoop only in `amber/build.sbt`, but `common/workflow-core/build.sbt` still declares `org.apache.hadoop % hadoop-common % "3.4.3"` (and `hadoop-mapreduce-client-core` at 3.4.3). Since `amber` depends on `WorkflowOperator` -> `WorkflowCore`, sbt will have to evict one version, which can lead to hard-to-debug runtime/linkage issues. Please keep Hadoop artifacts on a single version across modules (either bump WorkflowCore’s Hadoop deps to 3.5.0 too, or revert this change until the cross-module bump is done). -- 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]
