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

@ -40,4 +40,8 @@ public class HPCloudComputeComputeServiceLiveTest extends BaseComputeServiceLive
return new SshjSshClientModule(); return new SshjSshClientModule();
} }
@Override
public void testOptionToNotBlock() {
// start call is blocking anyway.
}
} }

View File

@ -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);
/** /**