mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
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:
parent
a71143c720
commit
112ee8c0e4
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user