> @@ -111,7 +111,11 @@ public NodeMetadata apply(Server from) {
> builder.location(new
> LocationBuilder().scope(LocationScope.HOST).id(from.getHostId()).description(
> from.getHostId()).parent(location.get()).build());
> addMetadataAndParseTagsFromCommaDelimitedValue(builder,
> from.getMetadata());
> -
> builder.group(nodeNamingConvention.groupInUniqueNameOrNull(from.getName()));
> + if (from.getMetadata().get("jclouds-group") != null) {
> + builder.group(from.getMetadata().get("jclouds-group"));
Yup yup.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/206/files#r7729874