Skip to content

Commit

Permalink
MID-9631: change of search option from raw to noFetch for visualizer …
Browse files Browse the repository at this point in the history
…when resolving object name from reference
  • Loading branch information
skublik committed Apr 30, 2024
1 parent 8e44e9f commit 860615f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ private PrismObject<?> getObject(ObjectReferenceType ref, Task task, OperationRe
try {
ObjectTypes type = getTypeFromReference(ref);

return modelService.getObject(type.getClassDefinition(), ref.getOid(), GetOperationOptions.createRawCollection(), task, result);
return modelService.getObject(type.getClassDefinition(), ref.getOid(), GetOperationOptions.createNoFetchCollection(), task, result);
} catch (Exception ex) {
return null;
}
Expand Down

0 comments on commit 860615f

Please sign in to comment.