mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-16 03:56:54 +02:00
Make sure the streams clean up after themselves
This commit is contained in:
parent
563655a1a4
commit
c6518afa7a
1 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue