CLOUDSTACK-4689

UI:API: associate Profile to Blade may take longer in some cases, which will result in timeout
This commit is contained in:
frank 2013-09-16 16:11:03 -07:00
parent 5d13033293
commit 584bb9bc0c
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ public class UcsManagerImpl implements UcsManager {
UcsHttpClient client = new UcsHttpClient(mgrvo.getUrl());
String res = client.call(ucscmd);
int count = 0;
int timeout = 600;
int timeout = 3600;
while (count < timeout) {
if (isBladeAssociated(mgrvo.getId(), bvo.getDn())) {
break;