From 5c73fe9304fbd4390d9d5bbc72793c1087998fac Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Thu, 3 Apr 2025 10:45:06 -0700 Subject: [PATCH] build fix --- controller/CV1.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/controller/CV1.cpp b/controller/CV1.cpp index 197994ab4..3bb883713 100644 --- a/controller/CV1.cpp +++ b/controller/CV1.cpp @@ -198,13 +198,13 @@ CV1::CV1(const Identity &myId, const char *path, int listenPort, RedisConfig *rc initializeNetworks(); initializeMembers(); - _heartbeatThread = std::thread(&PostgreSQL::heartbeat, this); - _membersDbWatcher = std::thread(&PostgreSQL::membersDbWatcher, this); - _networksDbWatcher = std::thread(&PostgreSQL::networksDbWatcher, this); + _heartbeatThread = std::thread(&CV1::heartbeat, this); + _membersDbWatcher = std::thread(&CV1::membersDbWatcher, this); + _networksDbWatcher = std::thread(&CV1::networksDbWatcher, this); for (int i = 0; i < ZT_CENTRAL_CONTROLLER_COMMIT_THREADS; ++i) { - _commitThread[i] = std::thread(&PostgreSQL::commitThread, this); + _commitThread[i] = std::thread(&CV1::commitThread, this); } - _onlineNotificationThread = std::thread(&PostgreSQL::onlineNotificationThread, this); + _onlineNotificationThread = std::thread(&CV1::onlineNotificationThread, this); configureSmee(); }