Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/61#discussion_r56085165
--- Diff:
software/base/src/main/java/org/apache/brooklyn/entity/brooklynnode/BrooklynNodeSshDriver.java
---
@@ -224,8 +231,18 @@ public void customize() {
uploadFileContents(brooklynLocalPropertiesContents,
brooklynLocalPropertiesUri, brooklynLocalPropertiesRemotePath);
}
+ // Upload a local-catalog.bom if required
+ if (brooklynCatalogInitialBomContents != null ||
brooklynCatalogInitialBomUri != null) {
+ uploadFileContents(brooklynCatalogInitialBomContents,
brooklynCatalogInitialBomUri, brooklynCatalogInitialBomRemotePath);
+ }
+
// Override the ~/.brooklyn/catalog.xml if required
if (brooklynCatalogContents != null || brooklynCatalogUri != null)
{
+ log.warn("Deprecated use of config"
--- End diff --
I'll say since 0.7.0, because that is when we deprecated the field (not
ideal, I agree). Don't want to have this code sitting around for longer than we
need by saying it was only recently deprecated (even though we've only now
added the log.warn message to tell the user about it directly).
---
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.
---