mirror of https://github.com/apache/jclouds.git
start call can take a very long time to complete
This commit is contained in:
parent
f27ece1b45
commit
774c4412aa
|
@ -39,5 +39,9 @@ public class HPCloudComputeComputeServiceLiveTest extends BaseComputeServiceLive
|
|||
protected Module getSshModule() {
|
||||
return new SshjSshClientModule();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void testOptionToNotBlock() {
|
||||
// start call is blocking anyway.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue