start call can take a very long time to complete

This commit is contained in:
Adrian Cole 2012-03-22 12:27:31 -07:00
parent f27ece1b45
commit 774c4412aa
2 changed files with 7 additions and 2 deletions

View File

@ -39,5 +39,9 @@ public class HPCloudComputeComputeServiceLiveTest extends BaseComputeServiceLive
protected Module getSshModule() {
return new SshjSshClientModule();
}
@Override
public void testOptionToNotBlock() {
// start call is blocking anyway.
}
}

View File

@ -78,7 +78,8 @@ public interface ServerClient {
* request
* @return the newly created server
*/
@Timeout(duration = 5, timeUnit = TimeUnit.MINUTES)
// blocking call
@Timeout(duration = 10, timeUnit = TimeUnit.MINUTES)
Server createServer(String name, String imageRef, String flavorRef, CreateServerOptions... options);
/**