>           // 'bad' orders have no start cpu's and cause the order lookup to 
> fail.
>           if (guest.getStartCpus() < 1)
>              return null;
> -         ProductOrder order = 
> client.getVirtualGuestClient().getOrderTemplate(guest.getId());
> -         if (order == null)
> +         try {
> +            order = 
> client.getVirtualGuestClient().getOrderTemplate(guest.getId());
> +         } catch (RuntimeException e) {
> +            logger.warn("Cannot getOrderTemplate " + guest.getId(), e);

comment that SL sometimes throws errors for the above method call, which it 
appears there is no way around. ?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/199/files#r7565019

Reply via email to