Copilot commented on code in PR #4009: URL: https://github.com/apache/texera/pull/4009#discussion_r2471230744
########## amber/src/main/scala/org/apache/amber/engine/common/AmberKryoInitializer.scala: ########## @@ -19,17 +19,15 @@ package org.apache.amber.engine.common -import akka.actor.ExtendedActorSystem -import com.esotericsoftware.kryo.serializers.ClosureSerializer -import com.esotericsoftware.kryo.serializers.ClosureSerializer.Closure -import io.altoo.akka.serialization.kryo.DefaultKryoInitializer -import io.altoo.akka.serialization.kryo.serializer.scala.ScalaKryo +import com.esotericsoftware.kryo.kryo5.serializers.ClosureSerializer Review Comment: The import path 'com.esotericsoftware.kryo.kryo5.serializers.ClosureSerializer' is incorrect. In Kryo 5.x, the package is 'com.esotericsoftware.kryo.serializers.ClosureSerializer' without the 'kryo5' segment. This import will fail at compile time. ```suggestion import com.esotericsoftware.kryo.serializers.ClosureSerializer ``` -- 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]
