diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-08-26 15:29:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-08-26 15:29:28 -0400 |
| commit | 510fbf139cf1df9ba7659351d96cf74eb92c0b23 (patch) | |
| tree | ce984bef2746bdfa2677be96446dbd91d30e8888 /MediaBrowser.ServerApplication/MainStartup.cs | |
| parent | 4964899fa3d074c4afcaf21d6202cf93ab06766d (diff) | |
fix repeated guide refreshes
Diffstat (limited to 'MediaBrowser.ServerApplication/MainStartup.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/MainStartup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/MainStartup.cs b/MediaBrowser.ServerApplication/MainStartup.cs index c40e63374..8f153f33f 100644 --- a/MediaBrowser.ServerApplication/MainStartup.cs +++ b/MediaBrowser.ServerApplication/MainStartup.cs @@ -163,7 +163,7 @@ namespace MediaBrowser.ServerApplication { _logger.Info("Found a duplicate process. Giving it time to exit."); - if (!duplicate.WaitForExit(15000)) + if (!duplicate.WaitForExit(20000)) { _logger.Info("The duplicate process did not exit."); return true; |
