You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Barrett Oglesby (Jira)" <ji...@apache.org> on 2021/11/30 21:43:00 UTC

[jira] [Created] (GEODE-9865) ConnectionManagerImpl forceCreateConnection to a specific server increments the count regardless whether the connection is successful

Barrett Oglesby created GEODE-9865:
--------------------------------------

             Summary: ConnectionManagerImpl forceCreateConnection to a specific server increments the count regardless whether the connection is successful
                 Key: GEODE-9865
                 URL: https://issues.apache.org/jira/browse/GEODE-9865
             Project: Geode
          Issue Type: Bug
          Components: client/server
    Affects Versions: 1.14.0
            Reporter: Barrett Oglesby


*ConnectionManagerImpl forceCreateConnection* does:
{noformat}
private PooledConnection forceCreateConnection(ServerLocation serverLocation)
    throws ServerRefusedConnectionException, ServerOperationException {
  connectionAccounting.create();
  try {
    return createPooledConnection(serverLocation);
  } catch (GemFireSecurityException e) {
    throw new ServerOperationException(e);
  }
}{noformat}
The call to *connectionAccounting.create()* increments the count. If *createPooledConnection* is unsuccessful, the count is not decremented. This causes the client to think there are more connections than there actually are.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)