You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
existingConfiguration=newBuildRequestConfiguration(GetNewConfigurationId(),newBuildRequestData(newInstance,[]),null/* use the instance's tools version */);
1525
+
existingConfiguration=newBuildRequestConfiguration(GetNewConfigurationId(),newBuildRequestData(newInstance,Array.Empty<string>()),null/* use the instance's tools version */);
properties=projectProperties.Filter(p =>pis not EnvironmentDerivedProjectPropertyInstance||EnvironmentUtilities.IsWellKnownEnvironmentDerivedProperty(p.Name), p =>newDictionaryEntry(p.Name,p.EvaluatedValue));
@@ -400,7 +400,7 @@ public void ResumeExecution(int nodeId)
400
400
{
401
401
ErrorUtilities.VerifyThrow(_assignedNodeId==Scheduler.InvalidNodeId||_assignedNodeId==nodeId,"Request must always resume on the same node on which it was started.");
ErrorUtilities.VerifyThrow((_state==SchedulableRequestState.Ready)||!_schedulingData.IsRequestScheduled(this),"Another instance of request {0} is already scheduled.",_request.GlobalRequestId);
405
405
ErrorUtilities.VerifyThrow(!_schedulingData.IsNodeWorking(nodeId),"Cannot resume execution of request {0} because node {1} is already working.",_request.GlobalRequestId,nodeId);
406
406
@@ -416,7 +416,7 @@ public void ResumeExecution(int nodeId)
ErrorUtilities.VerifyThrow(_state!=SchedulableRequestState.Ready||result.CircularDependency,"Request can only be Completed from the Ready state if the result indicates a circular dependency occurred.");
421
421
ErrorUtilities.VerifyThrow(_requestsWeAreBlockedBy.Count==0,"We can't be complete if we are still blocked on requests.");
0 commit comments