Put a timout on the wait for mb server to shutdown in installer

pull/702/head
Eric Reed 11 years ago
parent 8adfb36f4c
commit cc45ef896a

@ -118,6 +118,8 @@ namespace MediaBrowser.Installer
{ {
// wasn't running // 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)); //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", ""); client.UploadString("http://localhost:8096/mediabrowser/System/Shutdown", "");
try try
{ {
server.WaitForExit(); server.WaitForExit(30000); //don't hang indefinitely
} }
catch (ArgumentException) catch (ArgumentException)
{ {

@ -31,7 +31,7 @@
<PublisherName>Media Browser Team</PublisherName> <PublisherName>Media Browser Team</PublisherName>
<SuiteName>Media Browser</SuiteName> <SuiteName>Media Browser</SuiteName>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish> <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>53</ApplicationRevision> <ApplicationRevision>55</ApplicationRevision>
<ApplicationVersion>0.1.1.%2a</ApplicationVersion> <ApplicationVersion>0.1.1.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted> <PublishWizardCompleted>true</PublishWizardCompleted>

Loading…
Cancel
Save