[ 
https://issues.apache.org/jira/browse/WHIRR-315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13040181#comment-13040181
 ] 

Adrian Cole commented on WHIRR-315:
-----------------------------------

Have you debugged to see the value being passed to compute.destroyNode(id) ?

The code for the jclouds ec2 impl (EC2DestroyNodeStrategy) is the following, so 
you can imagine why this patch makes me scratch my head:

   public NodeMetadata destroyNode(String id) {
      String[] parts = AWSUtils.parseHandle(id);
      String region = parts[0];
      String instanceId = parts[1];
--snip--

> Use AWSUtils to handle instance IDs 
> ------------------------------------
>
>                 Key: WHIRR-315
>                 URL: https://issues.apache.org/jira/browse/WHIRR-315
>             Project: Whirr
>          Issue Type: Bug
>            Reporter: Andrei Savu
>            Assignee: Andrei Savu
>             Fix For: 0.6.0
>
>         Attachments: WHIRR-315.patch
>
>
> I realized that I have to use AWSUtills in order to handle instances IDs 
> correctly. It looks like inconsistent behavior in jclouds. 
> From the documentation I would expect to be able to call:
> {code}
> computeService.destroyNode(metadata.getId())
> {code}
> but I have to do the following call in order to get the expected behavior:
> {code}
> computeService.destroyNode(AWSUtils.parseHandle(metadata.getId())[1]);
> {code}
> Adrian, am I missing something about how jclouds handles instance IDs?

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to