Make sure the streams clean up after themselves

This commit is contained in:
Grant Limberg 2020-05-12 12:37:05 -07:00
parent 563655a1a4
commit c6518afa7a
No known key found for this signature in database
GPG Key ID: 2BA62CCABBB4095A

View File

@ -761,6 +761,11 @@ void PostgreSQL::_membersWatcher_Redis() {
fprintf(stderr, "json parse error in networkWatcher_Redis\n");
}
}
if (_rc->clusterMode) {
_cluster->xdel(key, id);
} else {
_redis->xdel(key, id);
}
}
}
}
@ -873,6 +878,11 @@ void PostgreSQL::_networksWatcher_Redis() {
fprintf(stderr, "json parse error in networkWatcher_Redis\n");
}
}
if (_rc->clusterMode) {
_cluster->xdel(key, id);
} else {
_redis->xdel(key, id);
}
}
}
}