Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Use include-runtime with resource groups using children: as the start…
Browse files Browse the repository at this point in the history
… and + as the end
  • Loading branch information
Michael Burman committed Dec 18, 2019
1 parent 0c6714a commit 2b3811f
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -144,6 +144,10 @@ private void loadHandleGroup(Configuration config, PropertyGroupDefinition group
}
operation = new ReadChildrenResources(address, type);
operation.addAdditionalProperty("recursive", "true");

if(groupName.endsWith("+")) {
operation.addAdditionalProperty("include-runtime", "true");
}
} else if (groupName.startsWith("child:")) {
String subPath = groupName.substring("child:".length());
if (!subPath.contains("="))
Expand Down

0 comments on commit 2b3811f

Please sign in to comment.