mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-11 09:46:55 +02:00
build fix
This commit is contained in:
parent
2af105000f
commit
5c73fe9304
1 changed files with 5 additions and 5 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue