Github user geomacy commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/492#discussion_r93609214
--- Diff:
karaf/init/src/main/java/org/apache/brooklyn/launcher/osgi/OsgiLauncher.java ---
@@ -199,4 +199,7 @@ public void setLocalBrooklynProperties(String
localBrooklynProperties) {
this.localBrooklynProperties = localBrooklynProperties;
}
+ public void
setDeserializingClassRenamesProvider(DeserializingClassRenamesProvider.OsgiConfigLoader
val) {
--- End diff --
use instead the "depends-on" attribute in the blueprint:
```
<bean id="launcher"
class="org.apache.brooklyn.launcher.osgi.OsgiLauncher"
init-method="init"
destroy-method="destroy"
depends-on="deserializingClassRenamesProvider">
<!-- set properties but avoid the deserializingClassRenamesProvider
one -->
</bean>
```
---
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.
---