mirror of https://github.com/apache/cloudstack.git
Fixed the issues for ssvm and cpvm to wait until it gets configured and then return the status. Made checksum method to return true.
This commit is contained in:
parent
7ac1ac9faf
commit
279793e530
|
|
@ -1193,7 +1193,7 @@ namespace HypervResource
|
|||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -348,7 +348,7 @@ namespace HypervResource
|
|||
SetState(newVm, RequiredState.Enabled);
|
||||
|
||||
// we need to reboot to get the hv kvp daemon get started vr gets configured.
|
||||
if (vmName.StartsWith("r-"))
|
||||
if (vmName.StartsWith("r-") || vmName.StartsWith("s-") || vmName.StartsWith("v-"))
|
||||
{
|
||||
System.Threading.Thread.Sleep(90000);
|
||||
SetState(newVm, RequiredState.Reboot);
|
||||
|
|
|
|||
Loading…
Reference in New Issue