diff options
Diffstat (limited to 'MediaBrowser.Installer/MainWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.Installer/MainWindow.xaml.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs index 3d60274b1..272ebbfad 100644 --- a/MediaBrowser.Installer/MainWindow.xaml.cs +++ b/MediaBrowser.Installer/MainWindow.xaml.cs @@ -118,6 +118,8 @@ namespace MediaBrowser.Installer { // wasn't running } + + Thread.Sleep(500); // give it just another sec to be sure its really gone } //MessageBox.Show(string.Format("Called with args: product: {0} archive: {1} caller: {2}", product, Archive, callerId)); @@ -168,7 +170,7 @@ namespace MediaBrowser.Installer client.UploadString("http://localhost:8096/mediabrowser/System/Shutdown", ""); try { - server.WaitForExit(); + server.WaitForExit(30000); //don't hang indefinitely } catch (ArgumentException) { |
