Temp object was being destroyed before connection was used

This commit is contained in:
Grant Limberg 2020-05-21 09:33:03 -07:00
parent d24c8d858c
commit 08cb72bdba
No known key found for this signature in database
GPG Key ID: 2BA62CCABBB4095A

View File

@ -1666,7 +1666,8 @@ void PostgreSQL::onlineNotification_Redis()
try {
if (!lastOnline.empty()) {
if (_rc->clusterMode) {
auto tx = _cluster->redis(controllerId).transaction(true);
auto redis = _cluster->redis(controllerId);
auto tx = redis.transaction(true);
_doRedisUpdate(tx, controllerId, lastOnline);
} else {
auto tx = _redis->transaction(true);