Merge remote-tracking branch 'origin/patch'

This commit is contained in:
Ryan Kurtz 2025-03-25 14:17:57 -04:00
commit 1bed582491
8 changed files with 51 additions and 14 deletions

View file

@ -721,7 +721,8 @@ public interface TraceObjectSchema {
for (Map.Entry<String, AttributeSchema> attrEnt : ent.schema.getAttributeSchemas()
.entrySet()) {
TraceObjectSchema attrSchema = ctx.getSchema(attrEnt.getValue().getSchema());
if (TraceObjectInterface.class.isAssignableFrom(attrSchema.getType()) &&
if ((TraceObjectInterface.class.isAssignableFrom(attrSchema.getType()) ||
TraceObject.class.isAssignableFrom(attrSchema.getType())) &&
visited.add(attrSchema)) {
nextLevel.add(new Private.CanonicalSearchEntry(
ent.path.key(attrEnt.getKey()),