justinThompson commented on this pull request.
> + .credentials(identity, credential)
+ .buildView(typeToken(EC2ComputeServiceContext.class));
+
+ ec2Api = ec2ComputeServiceContext.unwrapApi(EC2Api.class);
+
+ }
+
+ private void createTestLoadBalancer (){
+ api.getLoadBalancerApi().createListeningInAvailabilityZones(loadBalancerName, Listener.builder()
+ .protocol(Protocol.HTTP)
+ .port(80)
+ .instanceProtocol(Protocol.HTTP)
+ .instancePort(80)
+ .build(), ImmutableList.of("us-east-1b"));
+ }
+ @AfterClass
ah cool, i didn't know about that. I have updated it to `alwaysRun` along with the ofter live
tests
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/70
|