mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
Merge pull request #1310 from mcintyre94/CA-232963
[CA-232963] XC hangs after restarting toolstack while viewing PVS tab
This commit is contained in:
commit
c437d10bc8
@ -50,6 +50,8 @@ namespace XenAdmin.TabPages
|
||||
|
||||
private DataGridViewVms_DefaultSort vmDefaultSort;
|
||||
|
||||
private readonly CollectionChangeEventHandler PvsProxy_CollectionChangedWithInvoke;
|
||||
|
||||
public PvsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
@ -62,6 +64,8 @@ namespace XenAdmin.TabPages
|
||||
|
||||
vmDefaultSort = new DataGridViewVms_DefaultSort();
|
||||
|
||||
PvsProxy_CollectionChangedWithInvoke = Program.ProgramInvokeHandler(PvsProxyCollectionChanged);
|
||||
|
||||
base.Text = Messages.PVS_TAB_TITLE;
|
||||
}
|
||||
|
||||
@ -75,16 +79,16 @@ namespace XenAdmin.TabPages
|
||||
{
|
||||
if (connection != null)
|
||||
{
|
||||
connection.Cache.DeregisterCollectionChanged<PVS_proxy>(PvsProxyCollectionChanged);
|
||||
connection.Cache.DeregisterCollectionChanged<VM>(PvsProxyCollectionChanged);
|
||||
connection.Cache.DeregisterCollectionChanged<PVS_proxy>(PvsProxy_CollectionChangedWithInvoke);
|
||||
connection.Cache.DeregisterCollectionChanged<VM>(PvsProxy_CollectionChangedWithInvoke);
|
||||
}
|
||||
|
||||
connection = value;
|
||||
|
||||
if (connection != null)
|
||||
{
|
||||
connection.Cache.RegisterCollectionChanged<PVS_proxy>(PvsProxyCollectionChanged);
|
||||
connection.Cache.RegisterCollectionChanged<VM>(PvsProxyCollectionChanged);
|
||||
connection.Cache.RegisterCollectionChanged<PVS_proxy>(PvsProxy_CollectionChangedWithInvoke);
|
||||
connection.Cache.RegisterCollectionChanged<VM>(PvsProxy_CollectionChangedWithInvoke);
|
||||
}
|
||||
|
||||
LoadVMs();
|
||||
@ -283,7 +287,7 @@ namespace XenAdmin.TabPages
|
||||
|
||||
private void PvsProxyCollectionChanged(object sender, CollectionChangeEventArgs e)
|
||||
{
|
||||
Program.Invoke(this, LoadVMs);
|
||||
LoadVMs();
|
||||
}
|
||||
|
||||
private void VmPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||
|
Loading…
Reference in New Issue
Block a user