Github user neykov commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/182#discussion_r65895846
--- Diff:
rest/rest-resources/src/main/java/org/apache/brooklyn/rest/transform/CatalogTransformer.java
---
@@ -131,7 +132,11 @@ public static CatalogItemSummary
catalogItemSummary(BrooklynRestResourceUtils b,
}
public static CatalogPolicySummary
catalogPolicySummary(BrooklynRestResourceUtils b, CatalogItem<? extends
Policy,PolicySpec<?>> item, UriBuilder ub) {
- Set<PolicyConfigSummary> config = ImmutableSet.of();
+ final Set<PolicyConfigSummary> config = new HashSet<>();
+ final PolicySpec<?> spec = (PolicySpec<?>)
b.getCatalog().createSpec((CatalogItem) item);
--- End diff --
wrap in a `try-catch`, could throw on invalid catalog item (for example
some dependency no longer exists)
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---