group name in test was too long, making dns exceptions

This commit is contained in:
Adrian Cole 2012-06-01 12:58:05 -07:00
parent 8159b6618f
commit 160cd273e2
1 changed files with 11 additions and 10 deletions

View File

@ -427,16 +427,17 @@ public abstract class BaseComputeServiceLiveTest extends BaseComputeServiceConte
try {
for (int i = 0; i < 2; i++) {
final int groupNum = i;
final String group = "groupconcurrent"+groupNum;
final String group = "twin" + groupNum;
groups.add(group);
ListenableFuture<NodeMetadata> future = executor.submit(new Callable<NodeMetadata>() {
public NodeMetadata call() throws Exception {
NodeMetadata node = getOnlyElement(client.createNodesInGroup(group, 1,
inboundPorts(22, 8080).blockOnPort(22, 300+groupNum)));
NodeMetadata node = getOnlyElement(client.createNodesInGroup(group, 1, inboundPorts(22, 8080)
.blockOnPort(22, 300 + groupNum)));
getAnonymousLogger().info("Started node " + node.getId());
return node;
}});
}
});
futures.add(future);
}