mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
put back modified version of earlier comment
This commit is contained in:
parent
f1e8343b30
commit
72a9017fdf
1 changed files with 7 additions and 0 deletions
|
@ -292,6 +292,13 @@ void NodeList::addSetOfNodeTypesToNodeInterestSet(const NodeSet& setOfNodeTypes)
|
|||
|
||||
void NodeList::sendDomainServerCheckIn() {
|
||||
|
||||
// On ThreadedAssignments (assignment clients), this function
|
||||
// is called by the server check-in timer thread
|
||||
// not the NodeList thread. Calling it on the NodeList thread
|
||||
// resulted in starvation of the server check-in function.
|
||||
// be VERY CAREFUL modifying this code as members of NodeList
|
||||
// may be called by multiple threads.
|
||||
|
||||
if (!_sendDomainServerCheckInEnabled) {
|
||||
qCDebug(networking_ice) << "Refusing to send a domain-server check in while it is disabled.";
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue