fixed the method signature

This commit is contained in:
Alex Yarmula 2010-04-14 17:33:13 -07:00
parent 66538e4676
commit 56eff0f10d
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public class EC2ComputeServiceLiveTest extends BaseComputeServiceLiveTest {
Map<String, ? extends NodeMetadata> map = client.getNodesWithTag("ec2");
map.values().iterator().next();
Credentials creds = new Credentials("ubuntu", keyPair.get("public"));
client.runScriptOnNodesWithTag("ec2", creds, "mkdir ~/ahha; sleep 3".getBytes());
client.runScriptOnNodesWithTag("ec2", "mkdir ~/ahha; sleep 3".getBytes());
client.destroyNodesWithTag("ec2");
}