Do we have any progress here? To put together the simplest test possible, could
you try running something like the following:
```java
NodeMetadata node =
Iterables.getOnlyElement(compute.createNodesInGroup("tasks", 1, template));
ListenableFuture<ExecResponse> future =
compute.submitScriptOnNode(node.getId(), "sleep 300",
nameTask("sleeper").runAsRoot(false));
checkState(!future.isDone(), "future.isDone()");
future.cancel(true);
checkState(future.isCancelled(), "future.isCancelled()");
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/224#issuecomment-172577452