Skip to content

Commit

Permalink
Merge pull request #586 from jamezp/runtime-resource-fix
Browse files Browse the repository at this point in the history
Skip validation of runtime resources
  • Loading branch information
kabir committed Mar 28, 2015
2 parents 9b29e23 + 21cdbf6 commit 8ea7245
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -475,7 +475,7 @@ private void addAllAddresses(PathAddress current, Resource resource, Set<PathAdd

for (String name : resource.getChildTypes()) {
for (ResourceEntry entry : resource.getChildren(name)) {
if (!entry.isProxy()) {
if (!entry.isProxy() && !entry.isRuntime()) {
addAllAddresses(current.append(entry.getPathElement()), entry, addresses);
}
}
Expand Down

0 comments on commit 8ea7245

Please sign in to comment.