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
|
@ -40,4 +40,8 @@ public class HPCloudComputeComputeServiceLiveTest extends BaseComputeServiceLive
|
||||||
return new SshjSshClientModule();
|
return new SshjSshClientModule();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void testOptionToNotBlock() {
|
||||||
|
// start call is blocking anyway.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,7 +78,8 @@ public interface ServerClient {
|
||||||
* request
|
* request
|
||||||
* @return the newly created server
|
* @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);
|
Server createServer(String name, String imageRef, String flavorRef, CreateServerOptions... options);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue