> +
> + disks[0] = osProperties.get("name");
> + disks[1] = datadiskObject.get("name");
> +
> + }
> + return true;
> + }
> + return false;
> + }
> + catch (Exception e) {
> + return false;
> + }
> + }
> + }, 15 * 1000 /* 15 second timeout */).apply(uri);
> +
> + }
Also the timeout for an image to become available should be controlled by the
`ComputeServiceProperties.TIMEOUT_IMAGE_AVAILABLE`. Take the
[DigitalOcean2ImageExtension](https://github.com/jclouds/jclouds/blob/master/providers/digitalocean2/src/main/java/org/jclouds/digitalocean2/compute/extensions/DigitalOcean2ImageExtension.java)
as an implementation example.
---
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/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67883208