You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@geode.apache.org by GitBox <gi...@apache.org> on 2021/03/03 10:41:28 UTC

[GitHub] [geode] mivanac commented on a change in pull request #6063: GEODE-6150_1: Solution for Client/Server NIO SSL

mivanac commented on a change in pull request #6063:
URL: https://github.com/apache/geode/pull/6063#discussion_r586306755



##########
File path: geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImpl.java
##########
@@ -499,18 +508,29 @@
       LinkedBlockingQueue<ByteBuffer> tmp_commQ = null;
       Set<ServerConnection> tmp_hs = null;
       SystemTimer tmp_timer = null;
+      BufferPool tmp_buffpool = null;
       if (isSelector()) {
         tmp_s = Selector.open(); // no longer catch ex to fix bug 36907
         tmp_q = new LinkedBlockingQueue<>();
         tmp_commQ = new LinkedBlockingQueue<>();
         tmp_hs = new HashSet<>(512);
         tmp_timer = new SystemTimer(internalCache.getDistributedSystem());
+        DistributionImpl distribution = (DistributionImpl) internalCache

Review comment:
       Thanks for comments. I changed this to create own pool for client-server communication.




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org