> +// }
> +// }
> + logger.trace(">> getting server with id=%s", createdServerId);
> + Server createdServer = pbApi.serversApi().getServer(createdServerId);
> + logger.trace("<< got server [%s]", createdServer);
> +
> + return new NodeAndInitialCredentials<>(
> + createdServer,
> + createdServerId,
> + LoginCredentials.builder().build()
> + );
> + }
> +
> + @Override
> + public Iterable<Image> listImages() {
> + if (pbApi.imagesApi() == null) {
Is this actually possible? In which case could the image API be null?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/72/files#r17228893