inheritence mess cleanup

This commit is contained in:
Grant Limberg 2025-07-16 10:40:19 -07:00
parent 4a15671e84
commit 3f19712178
No known key found for this signature in database
GPG key ID: 8F2F97D3BE8D7735
8 changed files with 73 additions and 78 deletions

View file

@ -790,7 +790,7 @@ void CV2::membersDbWatcher()
std::string stream = "member_" + _myAddressStr;
fprintf(stderr, "Listening to member stream: %s\n", stream.c_str());
MemberNotificationReceiver m(this, *c->c, stream);
MemberNotificationReceiver<CV2> m(this, *c->c, stream);
while (_run == 1) {
c->c->await_notification(5, 0);
@ -809,7 +809,7 @@ void CV2::networksDbWatcher()
auto c = _pool->borrow();
NetworkNotificationReceiver n(this, *c->c, stream);
NetworkNotificationReceiver<CV2> n(this, *c->c, stream);
while (_run == 1) {
c->c->await_notification(5, 0);