mirror of
https://github.com/lubosz/overte.git
synced 2025-04-13 11:52:09 +02:00
Filter on scriptValue to reduce EntityItem load; bump ping timeouts for testing
This commit is contained in:
parent
a8dd7b7e1f
commit
0b080471ff
3 changed files with 3 additions and 2 deletions
|
@ -957,7 +957,7 @@ void AvatarMixer::parseDomainServerSettings(const QJsonObject& domainSettings) {
|
|||
}
|
||||
|
||||
void AvatarMixer::setupEntityQuery() {
|
||||
static char queryJsonString[] = R"({"avatarPriority": true})";
|
||||
static char queryJsonString[] = R"({"avatarPriority": true, "serverScripts": "+"})";
|
||||
|
||||
_entityViewer.init();
|
||||
DependencyManager::registerInheritance<SpatialParentFinder, AssignmentParentFinder>();
|
||||
|
|
|
@ -35,7 +35,7 @@ const unsigned short DEFAULT_DOMAIN_SERVER_DTLS_PORT = 40103;
|
|||
const quint16 DOMAIN_SERVER_HTTP_PORT = 40100;
|
||||
const quint16 DOMAIN_SERVER_HTTPS_PORT = 40101;
|
||||
|
||||
const int MAX_SILENT_DOMAIN_SERVER_CHECK_INS = 5;
|
||||
const int MAX_SILENT_DOMAIN_SERVER_CHECK_INS = 10; // XXX
|
||||
|
||||
class DomainHandler : public QObject {
|
||||
Q_OBJECT
|
||||
|
|
|
@ -123,6 +123,7 @@ void ThreadedAssignment::checkInWithDomainServerOrExit() {
|
|||
|
||||
// increase the number of queued check ins
|
||||
_numQueuedCheckIns++;
|
||||
qCDebug(networking) << "Number of queued checkins = " << _numQueuedCheckIns;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue