mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 03:53:44 +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();
|
initializeNetworks();
|
||||||
initializeMembers();
|
initializeMembers();
|
||||||
|
|
||||||
_heartbeatThread = std::thread(&PostgreSQL::heartbeat, this);
|
_heartbeatThread = std::thread(&CV1::heartbeat, this);
|
||||||
_membersDbWatcher = std::thread(&PostgreSQL::membersDbWatcher, this);
|
_membersDbWatcher = std::thread(&CV1::membersDbWatcher, this);
|
||||||
_networksDbWatcher = std::thread(&PostgreSQL::networksDbWatcher, this);
|
_networksDbWatcher = std::thread(&CV1::networksDbWatcher, this);
|
||||||
for (int i = 0; i < ZT_CENTRAL_CONTROLLER_COMMIT_THREADS; ++i) {
|
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();
|
configureSmee();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue