> @@ -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"));
Make "jclouds-group" a constant, seeing as it's used in a couple of other classes too? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/206/files#r7710320