L1nq0 commented on code in PR #9075:
URL: https://github.com/apache/storm/pull/9075#discussion_r3946583814
##########
storm-client/src/jvm/org/apache/storm/serialization/DefaultKryoFactory.java:
##########
@@ -47,6 +66,11 @@ public void postDecorate(Kryo k, Map<String, Object> conf) {
public static class KryoSerializableDefault extends Kryo {
boolean override = false;
+ private ObjectInputFilter javaSerializationFilter;
+
+ public void setJavaSerializationFilter(ObjectInputFilter filter) {
Review Comment:
Done in 54e4926: the filter is a constructor argument held in a private
final field, the setter is gone. KryoSerializableDefault has exactly one
construction site (DefaultKryoFactory.getKryo), so there was no other caller to
adjust.
--
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]