diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-13 23:33:17 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-13 23:33:17 -0500 |
| commit | 8b9e92916e812ef725c49707bfe834b8eeac240c (patch) | |
| tree | f22efee4ce7b58ed63348ba901226b7f0c6eb124 | |
| parent | 150630f1525b9c054558816aa0ca506fc861a499 (diff) | |
increase startup timeout
| -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 471bd4c8d..62cdbd05f 100644 --- a/MediaBrowser.ServerApplication/MainStartup.cs +++ b/MediaBrowser.ServerApplication/MainStartup.cs @@ -148,7 +148,7 @@ namespace MediaBrowser.ServerApplication { _logger.Info("Found a duplicate process. Giving it time to exit."); - if (!duplicate.WaitForExit(10000)) + if (!duplicate.WaitForExit(12000)) { _logger.Info("The duplicate process did not exit."); return true; |
