Github user bschuchardt commented on a diff in the pull request:

    https://github.com/apache/geode/pull/746#discussion_r135888279
  
    --- Diff: 
geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ServerConnectionFactory.java
 ---
    @@ -41,8 +41,8 @@ private synchronized void initializeAuthenticatorsMap() {
           return;
         }
         authenticators = new HashMap<>();
    -    ServiceLoader<StreamAuthenticator> loader = 
ServiceLoader.load(StreamAuthenticator.class);
    -    for (StreamAuthenticator streamAuthenticator : loader) {
    +    ServiceLoader<Authenticator> loader = 
ServiceLoader.load(Authenticator.class);
    +    for (Authenticator streamAuthenticator : loader) {
    --- End diff --
    
    The "stream" concept is fine in the cache.tier.sockets package - there are 
other uses of it there.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to