davidradl commented on code in PR #25896:
URL: https://github.com/apache/flink/pull/25896#discussion_r1907081472
##########
flink-core/src/main/java/org/apache/flink/api/java/typeutils/runtime/ValueComparator.java:
##########
@@ -142,12 +143,11 @@ private void checkKryoInitialized() {
if (this.kryo == null) {
this.kryo = new Kryo();
- Kryo.DefaultInstantiatorStrategy instantiatorStrategy =
- new Kryo.DefaultInstantiatorStrategy();
+ DefaultInstantiatorStrategy instantiatorStrategy = new
DefaultInstantiatorStrategy();
instantiatorStrategy.setFallbackInstantiatorStrategy(new
StdInstantiatorStrategy());
kryo.setInstantiatorStrategy(instantiatorStrategy);
- this.kryo.setAsmEnabled(true);
+ // this.kryo.setAsmEnabled(true);
Review Comment:
nit: I assume we want to remove this line not comment it out
--
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]