mirror of https://github.com/apache/jclouds.git
not all cloud providers accept mixed case metadata keys
This commit is contained in:
parent
171c0804e0
commit
2ebd5f0247
|
@ -645,7 +645,9 @@ public abstract class BaseComputeServiceLiveTest extends BaseComputeServiceConte
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void createAndRunAServiceInGroup(String group) throws RunNodesException {
|
protected void createAndRunAServiceInGroup(String group) throws RunNodesException {
|
||||||
ImmutableMap<String, String> userMetadata = ImmutableMap.<String, String> of("Name", group);
|
// note that some cloud providers do not support mixed case tag names
|
||||||
|
ImmutableMap<String, String> userMetadata = ImmutableMap.<String, String> of("name", group);
|
||||||
|
|
||||||
ImmutableSet<String> tags = ImmutableSet. of(group);
|
ImmutableSet<String> tags = ImmutableSet. of(group);
|
||||||
Stopwatch watch = new Stopwatch().start();
|
Stopwatch watch = new Stopwatch().start();
|
||||||
NodeMetadata node = getOnlyElement(client.createNodesInGroup(group, 1,
|
NodeMetadata node = getOnlyElement(client.createNodesInGroup(group, 1,
|
||||||
|
|
Loading…
Reference in New Issue