Skip to content
Snippets Groups Projects
Verified Commit 61315d28 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

fix caching

parent 639849ea
No related branches found
No related tags found
No related merge requests found
Pipeline #36888 failed
......@@ -89,10 +89,11 @@ public class RetrieveProperties
for (FlatProperty subP : p.subProperties) {
subP.name = null;
Property newP = DatabaseUtils.parseFlatProperty(subP);
subP.name = "REPLACE ME!";
newP.setRole(Role.Domain);
props.add(newP);
}
p.subProperties = null;
// p.subProperties = null;// could be a problem?
}
}
props.addAll(DatabaseUtils.parseFromProtoProperties(t));
......@@ -112,6 +113,9 @@ public class RetrieveProperties
// retrieve sparse properties stage 2
for (final EntityInterface subP : p.getProperties()) {
if (subP.getId().isTemporary()) {
continue;
}
final RetrieveSparseEntity t2 = new RetrieveSparseEntity(subP);
execute(t2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment