mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-27 17:31:36 -06:00
SDA-2651 Added second termination step
This commit is contained in:
parent
a30df2d969
commit
dfb3bdfdc0
@ -249,6 +249,24 @@ class Script
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// When force terminating Symphony, sometimes this is detected as the renderer process crashing.
|
||||
// As this message would confuse users, we wait a short time and then kill all Symphony instances
|
||||
// again, which would ensure that the dialog about renderer crash will not be shown.
|
||||
|
||||
System.Threading.Thread.Sleep(500);
|
||||
|
||||
// Try to close all running symphony instances again
|
||||
System.Diagnostics.Process.GetProcessesByName("Symphony").ForEach(p => {
|
||||
if( System.IO.Path.GetFileName(p.MainModule.FileName) =="Symphony.exe")
|
||||
{
|
||||
if( !p.HasExited )
|
||||
{
|
||||
p.Kill();
|
||||
p.WaitForExit();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
catch (System.ComponentModel.Win32Exception ex)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user