> + return userExecutor.submit(new Callable<Image>() {
> + @Override
> + public Image call() throws Exception {
> + if (imageAvailablePredicate.apply(image))
> + return image.get();
> + throw new UncheckedTimeoutException("Image was not created
> within the time limit: " + image.get());
> + }
> + });
> + }
> +
> + @Override
> + public boolean deleteImage(String id) {
> + try {
> + api.getRemoteApi().deleteImage(id);
> + } catch (Exception e) {
> + logger.error(e, "Could not delete machine with id %s ", id);
"delete image"?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838573