From 63d41d85de8479f74107b6bda7b6d265f06fa868 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 1 Oct 2013 16:00:10 -0700 Subject: [PATCH 1/2] remove a bad comment --- domain-server/src/DomainServer.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/domain-server/src/DomainServer.cpp b/domain-server/src/DomainServer.cpp index 98e9d27482..89d362047c 100644 --- a/domain-server/src/DomainServer.cpp +++ b/domain-server/src/DomainServer.cpp @@ -569,7 +569,6 @@ int DomainServer::run() { bool foundMatchingAssignment = false; // enumerate the nodes and check if there is one with an attached assignment with matching UUID - // if the node has sent no types of interest, assume they want nothing but their own ID back for (NodeList::iterator node = nodeList->begin(); node != nodeList->end(); node++) { if (node->getLinkedData()) { Assignment* linkedAssignment = (Assignment*) node->getLinkedData(); From 74ec83d8edfaba37d6555f242406cbdedd5dcea7 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 1 Oct 2013 16:03:53 -0700 Subject: [PATCH 2/2] add an extra debug to track down HQ issue --- domain-server/src/DomainServer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/domain-server/src/DomainServer.cpp b/domain-server/src/DomainServer.cpp index 89d362047c..e0204d3201 100644 --- a/domain-server/src/DomainServer.cpp +++ b/domain-server/src/DomainServer.cpp @@ -563,6 +563,7 @@ int DomainServer::run() { for (int i = 0; i < MAX_STATIC_ASSIGNMENT_FILE_ASSIGNMENTS; i++) { if (_staticAssignments[i].getUUID().isNull()) { // reached the end of static assignments, bail + qDebug() << "Reached the end of SA file with i at" << i << "\n"; break; }