snuyanzin commented on code in PR #21203:
URL: https://github.com/apache/flink/pull/21203#discussion_r1016024953
##########
flink-core/src/main/java/org/apache/flink/core/classloading/ComponentClassLoader.java:
##########
@@ -189,6 +190,14 @@ public URL getResource(final String name) {
return null;
}
+ @Override
+ public InputStream getResourceAsStream(String name) {
+ if (isOwnerFirstClass(name)) {
Review Comment:
yes, probably you are right, done.
Initially I thought that there is no other usages of that methods, however
it worth to keep similar structure
--
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]