mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #6582 from Bond-009/shutdown
Allow shutdown while starting WebHost
This commit is contained in:
commit
9bb222b408
@ -195,9 +195,9 @@ namespace Jellyfin.Server
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await webHost.StartAsync().ConfigureAwait(false);
|
await webHost.StartAsync(_tokenSource.Token).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex) when (ex is not TaskCanceledException)
|
||||||
{
|
{
|
||||||
_logger.LogError("Kestrel failed to start! This is most likely due to an invalid address or port bind - correct your bind configuration in network.xml and try again.");
|
_logger.LogError("Kestrel failed to start! This is most likely due to an invalid address or port bind - correct your bind configuration in network.xml and try again.");
|
||||||
throw;
|
throw;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user