oleg-vlsk commented on code in PR #12760:
URL: https://github.com/apache/ignite/pull/12760#discussion_r2836680261
##########
modules/core/src/main/java/org/apache/ignite/internal/managers/deployment/GridDeploymentLocalStore.java:
##########
@@ -63,6 +63,9 @@ class GridDeploymentLocalStore extends
GridDeploymentStoreAdapter {
/** Deployment cache by class name. */
private final ConcurrentMap<String, Deque<GridDeployment>> cache = new
ConcurrentHashMap<>();
+ /** Deployment cache by classloader. */
+ private final ConcurrentMap<ClassLoader, Deque<GridDeployment>> cacheByLdr
= new ConcurrentHashMap<>();
Review Comment:
Done, thank you for the hint.
--
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]