kirklund commented on a change in pull request #7167:
URL: https://github.com/apache/geode/pull/7167#discussion_r764381649
##########
File path:
geode-serialization/src/main/java/org/apache/geode/internal/serialization/filter/SanctionedSerializables.java
##########
@@ -62,4 +75,22 @@
}
return result;
}
+
+ public static Set<String> loadSanctionedClassNames(
+ Iterable<SanctionedSerializablesService> services) {
+ Set<String> sanctionedClasses = new HashSet<>(650);
Review comment:
Yeah, it was originally being initialized to 200 in size. There are
almost 650 sanctioned classes in Geode now, so this is a better initial size.
--
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]