[
https://issues.apache.org/jira/browse/JCLOUDS-1101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Andrew Gaul reassigned JCLOUDS-1101:
Assignee: Andrew Gaul
> JDK 9 compatibility
> ---
>
> Key
[
https://issues.apache.org/jira/browse/JCLOUDS-1101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15621296#comment-15621296
]
Andrew Gaul commented on JCLOUDS-1101:
--
Upstream AutoValue issue, fix under review:
nacx requested changes on this pull request.
Thanks @andreaturli!
> + VPC() {}
+
+ public static Builder builder() {
+ return new AutoValue_VPC.Builder();
+ }
+
+ @AutoValue.Builder
+ public abstract static class Builder {
+
+ public abstract Builder id(String id);
+ publ
nacx commented on this pull request.
Just a couple minors. Apart from that LGTM! Thanks @alibazlamit!
> @@ -69,30 +72,31 @@ public void testCreateServer() {
.cores(1)
.ram(1024)
.build());
-
+
+ assertRequestCompleted(testServer);
Duplicate