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)