Github user geomacy commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/338#discussion_r79872120
--- Diff:
core/src/main/java/org/apache/brooklyn/core/catalog/internal/CatalogUtils.java
---
@@ -170,6 +173,13 @@ public static void installLibraries(ManagementContext
managementContext, @Nullab
public static String
getCatalogItemIdFromLoader(BrooklynClassLoadingContext loader) {
if (loader instanceof OsgiBrooklynClassLoadingContext) {
return
((OsgiBrooklynClassLoadingContext)loader).getCatalogItemId();
+ } else if (loader instanceof
BrooklynClassLoadingContextSequential) {
+ final Iterator<BrooklynClassLoadingContext> iterator =
((BrooklynClassLoadingContextSequential) loader).getPrimaries().iterator();
+ if (iterator.hasNext()) {
+ BrooklynClassLoadingContext osgiLoader = iterator.next();
+ return getCatalogItemIdFromLoader(osgiLoader);
+ }
+ else return null;
--- End diff --
Comment from @neykov
([here](https://github.com/neykov/brooklyn-server/pull/3#discussion_r79803301)):
Need to revisit this logic in light of latest updates.
---
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.
---