CA-164176: Make sure that the Install Update does not get stuck on precheck stage after cleanup on slave

- implement GetHashCode on HostOutOfSpaceProblem

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2015-03-12 14:38:55 +00:00
parent a71143c720
commit 112ee8c0e4

View File

@ -123,5 +123,10 @@ namespace XenAdmin.Diagnostics.Problems.HostProblem
return false;
return diskSpaceReq.Equals(other.diskSpaceReq);
}
public override int GetHashCode()
{
return diskSpaceReq != null ? diskSpaceReq.GetHashCode() : 0;
}
}
}