Skip to content

Commit 5a4b9fe

Browse files
committed
Don't wait for server to become active during public ip integration tests
1 parent 536d91f commit 5a4b9fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Rackspace.IntegrationTests/CloudServers/v2/CloudServersTestDataManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public Server CreateServer(Identifier networkId)
5454
const string flavor = "2"; // 512 MB Standard Instance
5555
const string image = "09de0a66-3156-48b4-90a5-1cf25a905207"; // Ubuntu 14.04 LTS (Trusty Tahr) (PVHVM)
5656
var requestedServer = _serverService.CreateServer(name, image, flavor, networks: new string[] { networkId });
57-
var server = _serverService.WaitForServerActive(requestedServer.Id);
57+
var server = _serverService.GetDetails(requestedServer.Id);
5858
Register(server);
5959
return server;
6060
}

0 commit comments

Comments
 (0)