Closed
Description
alonWang opened DATAREDIS-1007 and commented
I believe this pr cause this, #214
to solve it,just need to modify here
RedisConnectionUtils.releaseConnection()
// when redis "transactional" & enableTranactionSupport & readOnly,then release connection.
if (isConnectionTransactional(conn, factory)&& enableTranactionSupport && TransactionSynchronizationManager.isCurrentTransactionReadOnly()) {
unbindConnection(factory);
} else if (!isConnectionTransactional(conn, factory)) {
if (log.isDebugEnabled()) {
log.debug("Closing Redis Connection");
}
conn.close();
}
Affects: 2.2 RC1 (Moore), 1.8.22 (Ingalls SR22), 2.1.9 (Lovelace SR9)