fixes added logic to omit objects with no applicationid
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
This commit is contained in:
@@ -175,10 +175,14 @@ static class AutomateFunction
|
||||
}
|
||||
else
|
||||
{
|
||||
//automationContext.AttachInfoToObjects(ADDED, new List<string>() { testObject.id });
|
||||
addedList.Add(
|
||||
new Tuple<string, string>(testObject.id, testObject.speckle_type)
|
||||
);
|
||||
// we're skipping objects without an applicationId for now, since we're doing so in the release commit
|
||||
if (string.IsNullOrEmpty(testObject.applicationId))
|
||||
{
|
||||
//automationContext.AttachInfoToObjects(ADDED, new List<string>() { testObject.id });
|
||||
addedList.Add(
|
||||
new Tuple<string, string>(testObject.id, testObject.speckle_type)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user