Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing dependency on Content Pack creation for Searches with Parameters #21563

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
4 changes: 4 additions & 0 deletions changelog/unreleased/pr-21563.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
type = "fixed"
message = "Fix missing dependency for Data Adapter when creating Content Pack for Search with Parameters."

pulls = ["21563"]
Original file line number Diff line number Diff line change
Expand Up @@ -332,5 +332,6 @@ public SearchEntity toContentPackEntity(EntityDescriptorIds entityDescriptorIds)
@Override
public void resolveNativeEntity(EntityDescriptor entityDescriptor, MutableGraph<EntityDescriptor> mutableGraph) {
queries().forEach(query -> query.resolveNativeEntity(entityDescriptor, mutableGraph));
parameters().forEach(parameter -> parameter.resolveNativeEntity(entityDescriptor, mutableGraph));
}
}
Loading